forked from nats-io/nats.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (23 loc) · 1.16 KB
/
Copy pathDirectory.Build.props
File metadata and controls
27 lines (23 loc) · 1.16 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<NoWarn>$(NoWarn);CS1591;SA0001</NoWarn>
<!-- Audit the full dependency graph, not just direct references. The default 'direct' mode
cannot see a vulnerable package pulled in by a dependency, which is where they usually are. -->
<NuGetAuditMode>all</NuGetAuditMode>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)opensource.snk</AssemblyOriginatorKeyFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Do not package by default to avoid accidental publishing -->
<IsPackable>false</IsPackable>
<!-- NuGet version used by ABI compatibility checks -->
<NatsAbiCheckVersion>2.6.0</NatsAbiCheckVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Stylecop.Analyzers" Version="1.2.0-beta.556">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>