-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYaoAvaDemo.csproj
51 lines (43 loc) · 1.91 KB
/
YaoAvaDemo.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Assets\tx.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.6" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.6" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.6" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.6" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.6" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.6" />
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.0.6" />
<PackageReference Include="Prism.DryIoc.Avalonia" Version="8.1.97.11000" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Update="Assets\tx.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AvaloniaResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Pages\BindingControlView.axaml.cs">
<DependentUpon>BindingControlView.axaml</DependentUpon>
</Compile>
<Compile Update="Pages\ControlThemesView.axaml.cs">
<DependentUpon>ControlThemesView.axaml</DependentUpon>
</Compile>
<Compile Update="Pages\StyleView.axaml.cs">
<DependentUpon>StyleView.axaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>