PixiEditorTests.csproj 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0-windows</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  6. <Platforms>AnyCPU;x64;x86</Platforms>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <DebugType>full</DebugType>
  10. <DebugSymbols>true</DebugSymbols>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
  13. <DebugType>full</DebugType>
  14. <DebugSymbols>true</DebugSymbols>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  17. <DebugType>full</DebugType>
  18. <DebugSymbols>true</DebugSymbols>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <None Remove="ModelsTests\IO\CorruptedFile.xaml" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="Codecov" Version="1.12.4" />
  25. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.2">
  26. <PrivateAssets>all</PrivateAssets>
  27. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
  30. <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
  31. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
  32. <PackageReference Include="Moq" Version="4.16.1" />
  33. <PackageReference Include="OpenCover" Version="4.7.922" />
  34. <PackageReference Include="xunit" Version="2.4.1" />
  35. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
  36. <PrivateAssets>all</PrivateAssets>
  37. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  38. </PackageReference>
  39. <PackageReference Include="Xunit.StaFact" Version="1.0.37" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Page Include="ModelsTests\IO\CorruptedFile.xaml">
  43. <Generator>MSBuild:Compile</Generator>
  44. </Page>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ProjectReference Include="..\PixiEditor.UpdateModule\PixiEditor.UpdateModule.csproj" />
  48. <ProjectReference Include="..\PixiEditor\PixiEditor.csproj" />
  49. </ItemGroup>
  50. </Project>