IntegrationTests.csproj 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <PackageReference Include="coverlet.collector" />
  21. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  22. <PackageReference Include="xunit" />
  23. <PackageReference Include="xunit.runner.visualstudio" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\..\Terminal.Gui\Terminal.Gui.csproj" />
  27. <ProjectReference Include="..\..\TerminalGuiFluentTesting\TerminalGuiFluentTesting.csproj" />
  28. <ProjectReference Include="..\..\UICatalog\UICatalog.csproj" />
  29. <ProjectReference Include="..\UnitTests\UnitTests.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Using Include="Xunit" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <None Update="xunit.runner.json">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </None>
  38. </ItemGroup>
  39. </Project>