forked from dotnet/roslyn-analyzers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.CodeAnalysis.Analyzers.csproj
More file actions
25 lines (23 loc) · 1.34 KB
/
Copy pathMicrosoft.CodeAnalysis.Analyzers.csproj
File metadata and controls
25 lines (23 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<!--
PackageId is used by Restore. If we set it to Microsoft.CodeAnalysis.Analyzers
Restore would conclude that there is a cyclic dependency between Microsoft.CodeAnalysis and Microsoft.CodeAnalysis.Analyzers.
-->
<PackageId>*$(MSBuildProjectFile)*</PackageId>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\Microsoft.CodeAnalysis.BannedApiAnalyzers\Core\SymbolIsBannedAnalyzerBase.cs" Link="SymbolIsBannedAnalyzerBase.cs" />
<EmbeddedResource Include="AnalyzerBannedSymbols.txt" />
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Analyzers" />
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.Analyzers" />
<InternalsVisibleTo Include="Microsoft.CodeAnalysis.Analyzers.UnitTests" />
</ItemGroup>
<ItemGroup>
<None Include="..\ReleaseTrackingAnalyzers.Help.md" Link="ReleaseTrackingAnalyzers.Help.md" />
</ItemGroup>
<Import Project="..\..\Utilities\Compiler\Analyzer.Utilities.projitems" Label="Shared" />
<Import Project="..\..\Utilities\Workspaces\Workspaces.Utilities.projitems" Label="Shared" />
</Project>