forked from mkaring/ConfuserEx
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathConfuser.Analyzers.csproj
More file actions
26 lines (23 loc) · 1.23 KB
/
Copy pathConfuser.Analyzers.csproj
File metadata and controls
26 lines (23 loc) · 1.23 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
<Project Sdk="Microsoft.NET.Sdk">
<!-- Roslyn analyzer assembly. Deliberately standalone (does NOT import
ConfuserEx.Common.props) — analyzers must be a single netstandard2.0 assembly
with no runtime output and no strong-name/multi-target concerns. -->
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeBuildOutput>false</IncludeBuildOutput>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<IsPackable>false</IsPackable>
<!-- These analyzers ship inside this repo only; they are never consumed as a NuGet package. -->
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<!-- RS2008 (analyzer release tracking) only matters for analyzers shipped as packages. -->
<NoWarn>$(NoWarn);RS2008</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>