All of the projects in the src/RoslynAnalyzers directory use PackageReference to reference Microsoft.CodeAnalysis.* when they should really be using ProjectReference since these projects are now in the same repo.
Example:
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" VersionOverride="$(MicrosoftCodeAnalysisVersion)" /> |
This is needed to correctly resolve an issue with source-build prebuilts: dotnet/dotnet#400 (comment)
/cc @JoeRobich