-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
38 lines (33 loc) · 1.27 KB
/
Directory.Build.props
File metadata and controls
38 lines (33 loc) · 1.27 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
28
29
30
31
32
33
34
35
36
37
38
<!--
https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-reserved-and-well-known-properties?view=vs-2017
-->
<!--EXTERNAL_PROPERTIES: MSBuildThisFileDirectory-->
<Project>
<PropertyGroup>
<Version Condition="$(Version) == ''">0.1.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<Version>$(Version)</Version>
<Authors>Michael A. Volz</Authors>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(Version)</AssemblyVersion>
<Product>OpenGraphTileMaker</Product>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<NoWarn>1701;1702;CA1014;AD0001</NoWarn>
<DocumentationFile>_$(MSBuildProjectName).xml</DocumentationFile>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)StyleCop.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)StyleCop.json" Link="StyleCop.json" />
</ItemGroup>
</Project>