PixiEditorTests.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  7. <DebugType>full</DebugType>
  8. <DebugSymbols>true</DebugSymbols>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Codecov" Version="1.12.0" />
  12. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0">
  13. <PrivateAssets>all</PrivateAssets>
  14. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  15. </PackageReference>
  16. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
  17. <PackageReference Include="OpenCover" Version="4.7.922" />
  18. <PackageReference Include="xunit" Version="2.4.1" />
  19. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.2">
  20. <PrivateAssets>all</PrivateAssets>
  21. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  22. </PackageReference>
  23. <PackageReference Include="Xunit.StaFact" Version="0.3.18" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\PixiEditor\PixiEditor.csproj" />
  27. </ItemGroup>
  28. </Project>