Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup Microsoft.CodeAnalysis.NetAnalyzers.csproj #6344

Merged
merged 1 commit into from
Dec 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,19 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<!--
PackageId is used by Restore. If we set it to Microsoft.CodeQuality.Analyzers
Restore would conclude that there is a cyclic dependency between us and the Microsoft.CodeQuality.Analyzers nuget package.
PackageId is used by Restore. If we set it to Microsoft.CodeAnalysis.NetAnalyzers
Restore would conclude that there is a cyclic dependency between us and the Microsoft.CodeAnalysis.NetAnalyzers nuget package.
-->
<PackageId>*$(MSBuildProjectFile)*</PackageId>
<RootNamespace></RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.CodeQuality.CSharp.Analyzers" />
<InternalsVisibleTo Include="Microsoft.CodeQuality.VisualBasic.Analyzers" />
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.NetAnalyzers" />
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.NetAnalyzers" />
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.NetAnalyzers.UnitTests" />
<InternalsVisibleTo Include="Analyzer.Utilities.UnitTests" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Security\MicrosoftNetCoreSecurityResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>
<Import Project="..\..\Utilities\Compiler\Analyzer.Utilities.projitems" Label="Shared" />
<Import Project="..\..\Utilities\FlowAnalysis\FlowAnalysis.Utilities.projitems" Label="Shared" />
<Import Project="..\..\Utilities\Workspaces\Workspaces.Utilities.projitems" Label="Shared" />
Expand Down