forked from michaelvolz/OpenGraphTilemaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
44 lines (37 loc) · 1.58 KB
/
Copy pathDirectory.Build.props
File metadata and controls
44 lines (37 loc) · 1.58 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
39
40
41
42
43
44
<!--
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</NoWarn>
<DocumentationFile>_$(MSBuildProjectName).xml</DocumentationFile>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0" PrivateAssets="all" />
<PackageReference Include="StyleCop.Analyzers.Unstable" Version="1.2.0.164" PrivateAssets="all" />
<AdditionalFiles Include="$(MSBuildThisFileDirectory)StyleCop.json" Link="StyleCop.json" />
<CodeAnalysisDictionary Include="$(MSBuildThisFileDirectory)StyleCop.Dictionary.xml" Link="StyleCop.Dictionary.xml">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</CodeAnalysisDictionary>
</ItemGroup>
</Project>