AvaloniaApplication4.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  7. <ApplicationManifest>app.manifest</ApplicationManifest>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <None Remove=".gitignore" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <TrimmerRootDescriptor Include="Roots.xml" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Avalonia" Version="0.10.18" />
  17. <PackageReference Include="Avalonia.Desktop" Version="0.10.18" />
  18. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  19. <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.18" />
  20. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-preview.3.23174.2">
  21. <PrivateAssets>all</PrivateAssets>
  22. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  23. </PackageReference>
  24. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-preview.3.23174.2" />
  25. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0-preview.3.23174.2">
  26. <PrivateAssets>all</PrivateAssets>
  27. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-preview.2" />
  30. <PackageReference Include="XamlNameReferenceGenerator" Version="1.5.1" />
  31. </ItemGroup>
  32. </Project>