-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.props
67 lines (59 loc) · 3.28 KB
/
global.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
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* FileName: global.props
* Copyright/License: https://github.com/tacdevel/tacdevlibs/blob/master/LICENSE.md
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<Project ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_IsAutoBuild Condition="'$(_IsAutoBuild)' == ''">false</_IsAutoBuild>
</PropertyGroup>
<PropertyGroup>
<TACDevLibsRepoPath>$(MSBuildThisFileDirectory)</TACDevLibsRepoPath>
<TACDevLibsProjectBasePath>$(TACDevLibsRepoPath)$(TACDevLibsProjectCategory)\</TACDevLibsProjectBasePath>
<TACDevLibsProjectPath>$(TACDevLibsProjectBasePath)$(MSBuildProjectName)</TACDevLibsProjectPath>
</PropertyGroup>
<PropertyGroup>
<TACDevLibsBaseBuildPath>$(TACDevLibsRepoPath)build\</TACDevLibsBaseBuildPath>
<TACDevLibsProjectCategoryBuildPath>$(TACDevLibsBaseBuildPath)$(TACDevLibsProjectCategory)\</TACDevLibsProjectCategoryBuildPath>
<TACDevLibsProjectBuildPath>$(TACDevLibsProjectCategoryBuildPath)$(MSBuildProjectName)\$(Configuration)\</TACDevLibsProjectBuildPath>
<TACDevLibsProjectBuildBinPath>$(TACDevLibsProjectBuildPath)bin\</TACDevLibsProjectBuildBinPath>
<TACDevLibsProjectBuildObjPath>$(TACDevLibsProjectBuildPath)obj\</TACDevLibsProjectBuildObjPath>
<TACDevLibsProjectBuildDocPath>$(TACDevLibsProjectBuildPath)doc\</TACDevLibsProjectBuildDocPath>
<TACDevLibsProjectBuildPkgPath>$(TACDevLibsProjectBuildPath)pkg\</TACDevLibsProjectBuildPkgPath>
<BaseOutputPath>$(TACDevLibsProjectBuildBinPath)</BaseOutputPath>
<OutputPath>$(BaseOutputPath)</OutputPath>
<BaseIntermediateOutputPath>$(TACDevLibsProjectBuildObjPath)</BaseIntermediateOutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
</PropertyGroup>
<!-- See here: https://github.com/dotnet/sdk/blob/cd25d6bbfc2aac61cc790c511900427ac64fdaa8/src/Tasks/Microsoft.NET.Build.Tasks/build/Microsoft.NET.TargetFrameworkInference.targets#L167-L174 -->
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<AssemblyTitle>$(MSBuildProjectName)</AssemblyTitle>
<RootNamespace>$(MSBuildProjectName)</RootNamespace>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform>Any CPU</Platform>
<NeutralLanguage>en</NeutralLanguage>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<Choose>
<When Condition="'$(Configuration)' == 'Debug'">
<PropertyGroup>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
</PropertyGroup>
</When>
<When Condition="'$(Configuration)' == 'Release'">
<PropertyGroup>
<Optimize>true</Optimize>
<DebugSymbols>false</DebugSymbols>
<DebugType>embedded</DebugType>
</PropertyGroup>
</When>
</Choose>
</Project>