-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWowthingAutoUploader.csproj
More file actions
27 lines (25 loc) · 1.28 KB
/
WowthingAutoUploader.csproj
File metadata and controls
27 lines (25 loc) · 1.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.9"/>
<PackageReference Include="Avalonia.Desktop" Version="11.3.9"/>
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.9"/>
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.9"/>
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.9">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="UrlCombine" Version="2.0.0"/>
<PackageReference Include="Velopack" Version="0.0.1298"/>
</ItemGroup>
</Project>