-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPicea.Abies.Analyzers.csproj
More file actions
30 lines (24 loc) · 1.13 KB
/
Picea.Abies.Analyzers.csproj
File metadata and controls
30 lines (24 loc) · 1.13 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
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<IsRoslynComponent>true</IsRoslynComponent>
<!-- Exclude from Directory.Build.props global usings (ValueTuple alias needs System which isn't in netstandard2.0 the same way) -->
<ImplicitUsings>disable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<!-- Do NOT include the global usings from Directory.Build.props -->
<Compile Remove="$(MSBuildThisFileDirectory)..\Global\Usings.cs" />
<Compile Remove="$(MSBuildThisFileDirectory)..\Global\Suppressions.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="AnalyzerReleases.Shipped.md" />
<AdditionalFiles Include="AnalyzerReleases.Unshipped.md" />
</ItemGroup>
</Project>