-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (30 loc) · 1.09 KB
/
Directory.Build.props
File metadata and controls
37 lines (30 loc) · 1.09 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
<Project>
<!-- Company/Copyright -->
<PropertyGroup>
<Company>Tag Bites sp. z o.o.</Company>
<Authors>Tag Bites sp. z o.o.</Authors>
<Copyright>Tag Bites sp. z o.o. © 2012-2021</Copyright>
</PropertyGroup>
<!-- Bin/Obj directories -->
<PropertyGroup>
<BaseOutputPath>$(SolutionDir)bin\</BaseOutputPath>
<BaseIntermediateOutputPath>$(SolutionDir)bin\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
</PropertyGroup>
<!-- Compilation settings -->
<PropertyGroup>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<LangVersion>latest</LangVersion>
<Deterministic>true</Deterministic>
</PropertyGroup>
<!-- Globalziation -->
<PropertyGroup>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<!-- Ignored files/folders -->
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);*.csproj.DotSettings</DefaultItemExcludes>
</PropertyGroup>
<!-- Includes -->
<Import Condition="exists('Version.props')" Project="Version.props" />
<Import Condition="exists('Licensing.props')" Project="Licensing.props" />
</Project>