File: Test.Utilities.csproj
Web Access
Project: ..\..\..\src\Microsoft.CodeAnalysis.NetAnalyzers\tests\Test.Utilities\Test.Utilities.csproj (Test.Utilities)
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>$(NetCurrent)</TargetFramework>
    <DefineConstants>TEST_UTILITIES</DefineConstants>
    <IsTestUtilityProject>true</IsTestUtilityProject>
    <CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled>
    <!-- RS1024: Compare symbols correctly https://github.com/dotnet/roslyn-analyzers/issues/6381 -->
    <NoWarn>$(NoWarn);RS1024</NoWarn>
  </PropertyGroup>
 
  <ItemGroup>
    <PackageReference Include="Microsoft.CodeAnalysis" VersionOverride="$(MicrosoftCodeAnalysisVersionForNetAnalyzers)" />
    <PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeFix.Testing" />
    <PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeRefactoring.Testing" />
    <PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.CodeFix.Testing" />
    <PackageReference Include="System.ComponentModel.Composition" />
    <PackageReference Include="xunit.assert" />
    <PackageReference Include="Xunit.Combinatorial" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\TestReferenceAssembly\TestReferenceAssembly.csproj" />
  </ItemGroup>
 
  <Import Project="..\..\src\Utilities\Compiler\Analyzer.Utilities.projitems" Label="Shared" />
  <Import Project="..\..\src\Utilities\Workspaces\Workspaces.Utilities.projitems" Label="Shared" />
 
</Project>