StressTests.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <Nullable>enable</Nullable>
  4. <IsPackable>false</IsPackable>
  5. <IsTestProject>true</IsTestProject>
  6. <DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS;CONTRACTS_FULL</DefineConstants>
  7. <DebugType>portable</DebugType>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <NoLogo>true</NoLogo>
  10. <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)'=='Debug'">
  13. <DefineDebug>true</DefineDebug>
  14. <DefineConstants>$(DefineConstants);DEBUG_IDISPOSABLE</DefineConstants>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)'=='Release'">
  17. <Optimize>true</Optimize>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <Compile Include="..\UnitTests\TestsAllViews.cs" Link="TestsAllViews.cs" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="coverlet.collector" />
  24. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  25. <PackageReference Include="xunit" />
  26. <PackageReference Include="xunit.runner.visualstudio" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\..\Terminal.Gui\Terminal.Gui.csproj" />
  30. <ProjectReference Include="..\..\Examples\UICatalog\UICatalog.csproj" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Using Include="Xunit" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <None Update="xunit.runner.json">
  37. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  38. </None>
  39. </ItemGroup>
  40. </Project>