-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBSLConfigurations.targets
96 lines (87 loc) · 4.42 KB
/
BSLConfigurations.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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Common -->
<PropertyGroup>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RegisterForComInterop>False</RegisterForComInterop>
<BaseAddress>4194304</BaseAddress>
<FileAlignment>4096</FileAlignment>
<NoStdLib>False</NoStdLib>
<AppDesignerFolder>Properties</AppDesignerFolder>
<UseVSHostingProcess>false</UseVSHostingProcess>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<!-- Conditional -->
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\</OutputPath>
<DebugSymbols>True</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\</OutputPath>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" $(Configuration.Contains('Debug')) ">
</PropertyGroup>
<PropertyGroup Condition=" $(Configuration.Contains('Release')) ">
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v4.0' ">
<DefineConstants>$(DefineConstants);NET40</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v4.5' ">
<DefineConstants>$(DefineConstants);NET45;NET45_AND_ABOVE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v4.5.2' ">
<DefineConstants>$(DefineConstants);NET452;NET45_AND_ABOVE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v4.6.2' ">
<DefineConstants>$(DefineConstants);NET462;NET45_AND_ABOVE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v4.7.2' ">
<DefineConstants>$(DefineConstants);NET472;NET45_AND_ABOVE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" $(Configuration.Contains('Mono')) ">
<DefineConstants>$(DefineConstants);MONO;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(CIMode)' == 'true' ">
<DefineConstants>$(DefineConstants);CI_MODE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(MonoCS)' == 'true' ">
<DefineConstants>$(DefineConstants);MONO;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x64' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<!-- Available -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseMono|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono|x86'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseMono|x86'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono|x64'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseMono|x64'" />
</Project>