forked from DataDog/dd-trace-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (19 loc) · 822 Bytes
/
Directory.Build.props
File metadata and controls
22 lines (19 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<LangVersion>latest</LangVersion>
<!-- Strong name signature -->
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\Datadog.Trace.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<DelaySign>false</DelaySign>
</PropertyGroup>
<!-- StyleCop -->
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" PrivateAssets="all" />
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
<Compile Include="..\..\GlobalSuppressions.cs" Link="GlobalSuppressions.solution.cs" />
</ItemGroup>
</Project>