PixiEditor.Tests.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <IsPackable>false</IsPackable>
  7. <IsTestProject>true</IsTestProject>
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Avalonia" Version="11.1.0" />
  12. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0"/>
  13. <PackageReference Include="xunit" Version="2.4.2"/>
  14. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
  15. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  16. <PrivateAssets>all</PrivateAssets>
  17. </PackageReference>
  18. <PackageReference Include="coverlet.collector" Version="3.2.0">
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. <PrivateAssets>all</PrivateAssets>
  21. </PackageReference>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\..\src\PixiEditor.AvaloniaUI.Desktop\PixiEditor.AvaloniaUI.Desktop.csproj" />
  25. </ItemGroup>
  26. </Project>