UnitTests.Parallelizable.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <!-- Version numbers are automatically updated by gitversion when a release is released -->
  4. <!-- In the source tree the version will always be 2.0 for all projects. -->
  5. <!-- Do not modify these. -->
  6. <AssemblyVersion>2.0</AssemblyVersion>
  7. <FileVersion>2.0</FileVersion>
  8. <Version>2.0</Version>
  9. <InformationalVersion>2.0</InformationalVersion>
  10. </PropertyGroup>
  11. <PropertyGroup>
  12. <Nullable>enable</Nullable>
  13. <IsPackable>false</IsPackable>
  14. <UseDataCollector />
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. <DefineTrace>true</DefineTrace>
  17. <DebugType>portable</DebugType>
  18. <DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS;CONTRACTS_FULL</DefineConstants>
  19. <ImplicitUsings>enable</ImplicitUsings>
  20. <NoLogo>true</NoLogo>
  21. <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)'=='Debug'">
  24. <DefineDebug>true</DefineDebug>
  25. <DefineConstants>$(DefineConstants);DEBUG_IDISPOSABLE</DefineConstants>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(Configuration)'=='Release'">
  28. <Optimize>true</Optimize>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Compile Include="..\UnitTests\DriverAssert.cs" Link="DriverAssert.cs" />
  32. <Compile Include="..\UnitTests\OutputAssert.cs" Link="OutputAssert.cs" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <PackageReference Include="JetBrains.Annotations" PrivateAssets="all" />
  36. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  37. <PackageReference Include="Moq" />
  38. <PackageReference Include="ReportGenerator" />
  39. <PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" />
  40. <PackageReference Include="xunit" />
  41. <PackageReference Include="Xunit.Combinatorial" />
  42. <PackageReference Include="xunit.runner.visualstudio">
  43. <PrivateAssets>all</PrivateAssets>
  44. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  45. </PackageReference>
  46. <PackageReference Include="coverlet.collector">
  47. <PrivateAssets>all</PrivateAssets>
  48. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  49. </PackageReference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <ProjectReference Include="..\..\Examples\UICatalog\UICatalog.csproj" />
  53. <ProjectReference Include="..\..\Terminal.Gui\Terminal.Gui.csproj">
  54. </ProjectReference>
  55. <ProjectReference Include="..\TerminalGuiFluentTesting\TerminalGuiFluentTesting.csproj" />
  56. <ProjectReference Include="..\UnitTests\UnitTests.csproj" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <None Update="xunit.runner.json">
  60. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  61. </None>
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Using Include="System.Drawing" />
  65. <Using Include="Terminal.Gui" />
  66. <Using Include="Xunit" />
  67. </ItemGroup>
  68. </Project>