-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDogfood.csproj
26 lines (22 loc) · 1.14 KB
/
Dogfood.csproj
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
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>EffectiveCSharp.Analyzers</RootNamespace>
<AssemblyName>$(RootNamespace).Dogfood</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules><!-- Resolves RS1036 -->
<NoWarn>RS2008;$(NoWarn)</NoWarn> <!-- We don't actually ship analyzers from this project, it's only for dogfooding our own analyzers -->
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="$(RepoRoot)\src\EffectiveCSharp.Analyzers\EffectiveCSharp.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<GlobalAnalyzerConfigFiles Include=".globalconfig" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(RepoRoot)\src\EffectiveCSharp.Analyzers\**\*.cs" OutputType="Analyzer" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.HashCode" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" PrivateAssets="all" />
</ItemGroup>
</Project>