-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDirectory.Build.targets
38 lines (38 loc) · 1.4 KB
/
Directory.Build.targets
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
<Project>
<!-- DD2 -->
<PropertyGroup Condition="$(Configuration.StartsWith('DD2'))">
<DefineConstants>$(DefineConstants);DD2</DefineConstants>
</PropertyGroup>
<!-- DRDR -->
<PropertyGroup Condition="$(Configuration.StartsWith('DRDR'))">
<DefineConstants>$(DefineConstants);DRDR</DefineConstants>
</PropertyGroup>
<!-- MHR -->
<PropertyGroup Condition="$(Configuration.StartsWith('MHR'))">
<DefineConstants>$(DefineConstants);MHR</DefineConstants>
</PropertyGroup>
<!-- MHWS -->
<PropertyGroup Condition="$(Configuration.StartsWith('MHWS'))">
<DefineConstants>$(DefineConstants);MHWS</DefineConstants>
</PropertyGroup>
<!-- RE2 -->
<PropertyGroup Condition="$(Configuration.StartsWith('RE2'))">
<DefineConstants>$(DefineConstants);RE2</DefineConstants>
</PropertyGroup>
<!-- RE3 -->
<PropertyGroup Condition="$(Configuration.StartsWith('RE3'))">
<DefineConstants>$(DefineConstants);RE3</DefineConstants>
</PropertyGroup>
<!-- RE4 -->
<PropertyGroup Condition="$(Configuration.StartsWith('RE4'))">
<DefineConstants>$(DefineConstants);RE4</DefineConstants>
</PropertyGroup>
<!-- RE8 -->
<PropertyGroup Condition="$(Configuration.StartsWith('RE8'))">
<DefineConstants>$(DefineConstants);RE8</DefineConstants>
</PropertyGroup>
<!-- Debug -->
<PropertyGroup Condition="$(Configuration.Contains('Debug'))">
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
</PropertyGroup>
</Project>