-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
68 lines (56 loc) · 2.12 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project>
<!-- Company/Copyright -->
<PropertyGroup>
<Company>Tag Bites sp. z o.o.</Company>
<Authors>Tag Bites sp. z o.o.</Authors>
<CopyrightSinceYear>2012</CopyrightSinceYear>
<Copyright>© $(CopyrightSinceYear)-$([System.DateTime]::Today.ToString(`yyyy`)) $(Company)</Copyright>
</PropertyGroup>
<!-- Bin/Obj directories -->
<PropertyGroup>
<BaseOutputPath>$(MSBuildThisFileDirectory)bin\$(MSBuildProjectName)\</BaseOutputPath>
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\</PackageOutputPath>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)bin\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
</PropertyGroup>
<!-- Compilation settings -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Deterministic>true</Deterministic>
</PropertyGroup>
<!-- Documentation -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- Publish -->
<PropertyGroup Condition="'$(Configuration)' == 'Publish'">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<!-- Warnings -->
<PropertyGroup>
<NoWarn>1701;1702;1591;NU5048;NU5125</NoWarn>
</PropertyGroup>
<!-- Globalization -->
<PropertyGroup>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<!-- Ignored files/folders -->
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);*.csproj.DotSettings</DefaultItemExcludes>
</PropertyGroup>
<!-- Usings -->
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Linq" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
</ItemGroup>
<!-- Includes -->
<Import Condition="exists('Version.props')" Project="Version.props" />
<Import Condition="exists('Licensing.props')" Project="Licensing.props" />
<Import Condition="exists('Package.props')" Project="Package.props" />
</Project>