-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathDirectory.Build.props
43 lines (43 loc) · 2.13 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
<Project>
<Import Project="deploy.props" Condition="Exists('deploy.props')" />
<PropertyGroup>
<OutputType>Library</OutputType>
<Authors>WeBlog Community</Authors>
<Company>WeTeam Community</Company>
<Product>WeBlog</Product>
<Copyright>Copyright © 2011 - 2021</Copyright>
<Version>4.2.0</Version>
<Configurations>Debug sc9.1;Debug sc9.2;Debug sc9.3;Debug sc10.0;Debug sc10.1;Release sc9.1;Release sc9.2;Release sc9.3;Release sc10.0;Release sc10.1</Configurations>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('Debug'))">
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('Release'))">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('sc9.1'))">
<TargetFramework>net471</TargetFramework>
<DefineConstants>$(DefineConstants);SC91</DefineConstants>
<OutputPath>bin\sc91\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('sc9.2'))">
<TargetFramework>net471</TargetFramework>
<DefineConstants>$(DefineConstants);FEATURE_JOB_ABSTRACTIONS</DefineConstants>
<OutputPath>bin\sc92\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('sc9.3'))">
<TargetFramework>net471</TargetFramework>
<DefineConstants>$(DefineConstants);FEATURE_JOB_ABSTRACTIONS;FEATURE_URL_BUILDERS</DefineConstants>
<OutputPath>bin\sc93\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('sc10.0'))">
<TargetFramework>net48</TargetFramework>
<DefineConstants>$(DefineConstants);FEATURE_JOB_ABSTRACTIONS;FEATURE_URL_BUILDERS</DefineConstants>
<OutputPath>bin\sc100\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('sc10.1'))">
<TargetFramework>net48</TargetFramework>
<DefineConstants>$(DefineConstants);FEATURE_JOB_ABSTRACTIONS;FEATURE_URL_BUILDERS</DefineConstants>
<OutputPath>bin\sc101\</OutputPath>
</PropertyGroup>
</Project>