-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZXBSInstaller.csproj
More file actions
52 lines (50 loc) · 2.2 KB
/
ZXBSInstaller.csproj
File metadata and controls
52 lines (50 loc) · 2.2 KB
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
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<ApplicationIcon>zxbs.ico</ApplicationIcon>
<Version>1.0.0.2</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\install.svg" />
<None Remove="Assets\play.svg" />
<None Remove="Assets\refresh.svg" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\install.svg" />
<AvaloniaResource Include="Assets\play.svg" />
<AvaloniaResource Include="Assets\refresh.svg" />
<AvaloniaResource Include="zxbs.ico" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\zxbasic.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AvaloniaResource>
<AvaloniaResource Include="Assets\zxbs.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</AvaloniaResource>
<AvaloniaResource Include="Assets\zxbsinstaller.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AvaloniaResource>
<Content Include="zxbs.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.12" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.12" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.12" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.12" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.12">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="Svg.Controls.Skia.Avalonia" Version="11.3.9.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MsBox.Avalonia\MsBox.Avalonia.csproj" />
<ProjectReference Include="..\ZXBSInstaller.Log\ZXBSInstaller.Log.csproj" />
</ItemGroup>
</Project>