-
Notifications
You must be signed in to change notification settings - Fork 26
/
Directory.Build.props
30 lines (26 loc) · 1.01 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
<Project>
<PropertyGroup>
<Version>3.3</Version>
<VersionBuild Condition="'$(VersionBuild)'==''">0</VersionBuild>
<AssemblyVersion>$(Version).$(VersionBuild).0</AssemblyVersion>
<FileVersion>$(Version).$(VersionBuild).0</FileVersion>
<Company>Duracellko</Company>
<Copyright>Copyright © Duracellko 2012</Copyright>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<TreatSpecificWarningsAsErrors />
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CA1014</NoWarn>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)src\stylecop.json" />
</ItemGroup>
</Project>