Terminal.Gui.Analyzers.Tests.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="coverlet.collector" />
  15. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
  16. <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
  17. <PackageReference Include="Microsoft.CodeAnalysis.Features" />
  18. <PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" />
  19. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  20. <PackageReference Include="xunit" />
  21. <PackageReference Include="xunit.runner.visualstudio" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\Terminal.Gui.Analyzers\Terminal.Gui.Analyzers.csproj" />
  25. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Using Include="Xunit" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <None Update="xunit.runner.json">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. </ItemGroup>
  35. </Project>