-
Notifications
You must be signed in to change notification settings - Fork 466
/
Microsoft.CodeQuality.Analyzers.csproj
20 lines (20 loc) · 1.21 KB
/
Microsoft.CodeQuality.Analyzers.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. 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.CodeQuality.Analyzers
Restore would conclude that there is a cyclic dependency between us and the Microsoft.CodeQuality.Analyzers nuget package.
-->
<PackageId>*$(MSBuildProjectFullPath)*</PackageId>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.CodeQuality.CSharp.Analyzers" />
<InternalsVisibleTo Include="Microsoft.CodeQuality.VisualBasic.Analyzers" />
<InternalsVisibleTo Include="Microsoft.CodeQuality.Analyzers.UnitTests" />
<PackageReference Include="Humanizer.Core" Version="$(HumanizerVersion)" />
</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" />
</Project>