-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Directory.Build.props
42 lines (28 loc) · 1.22 KB
/
Directory.Build.props
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
33
34
35
36
37
38
39
40
41
42
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Copyright>Sebastien Ros</Copyright>
<Authors>Sebastien Ros</Authors>
<PackageProjectUrl>https://github.com/sebastienros/parlot</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<Version>0.0.0-preview</Version>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>Latest</LangVersion>
<DebugType>portable</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<DebugType>portable</DebugType>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Label="Analysis rules">
<AnalysisLevel>latest-Recommended</AnalysisLevel>
<!-- Prefix generic type parameter name with 'T' -->
<NoWarn>$(NoWarn);CA1715;</NoWarn>
<!-- Do not declare visible instance fields -->
<NoWarn>$(NoWarn);CA1051;</NoWarn>
<!-- Identifier contains type name -->
<NoWarn>$(NoWarn);CA1720;</NoWarn>
<!-- Identifiers should not match keywords -->
<NoWarn>$(NoWarn);CA1716;</NoWarn>
</PropertyGroup>
</Project>