-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPicea.Abies.Analyzers.csproj
More file actions
32 lines (26 loc) · 1.35 KB
/
Picea.Abies.Analyzers.csproj
File metadata and controls
32 lines (26 loc) · 1.35 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
31
32
<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="5.3.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.3.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0-2.25625.1" PrivateAssets="all" />
<PackageReference Include="System.Composition.AttributedModel" Version="7.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="AnalyzerReleases.Shipped.md" />
<AdditionalFiles Include="AnalyzerReleases.Unshipped.md" />
</ItemGroup>
</Project>