KMeans/KMeansGui/KMeansGui.csproj

26 lines
880 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<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="MvvmGen" Version="1.1.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Shell\" />
</ItemGroup>
<ItemGroup>
<Compile Update="ShellView.axaml.cs">
<DependentUpon>ShellView.axaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>