20 lines
806 B
XML
20 lines
806 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<PropertyGroup>
|
||
|
<OutputType>WinExe</OutputType>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
</PropertyGroup>
|
||
|
<ItemGroup>
|
||
|
<Folder Include="Models\" />
|
||
|
<AvaloniaResource Include="Assets\**" />
|
||
|
<None Remove=".gitignore" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Avalonia" Version="0.10.11" />
|
||
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.11" />
|
||
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
||
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.11" />
|
||
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.11" />
|
||
|
</ItemGroup>
|
||
|
</Project>
|