forked from castleproject/Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.proj
122 lines (101 loc) · 6.45 KB
/
Settings.proj
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="utf-8"?>
<!--
***********************************************************************************************
Project Settings file for VS and external build files
Copyright 2004-2014 Castle Project - http://www.castleproject.org/
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
***********************************************************************************************
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="_InitializeDynamicProperties">
<!-- Root Path definition relative for actual build file -->
<PropertyGroup>
<RootPath Condition="'$(RootPath)' == ''">$(MSBuildProjectDirectory)</RootPath>
</PropertyGroup>
<!-- Project Properties -->
<PropertyGroup>
<ProjectName>Castle.Core</ProjectName>
<!-- Used for display purposes. Should start with a space to look better -->
<BuildName></BuildName>
<!-- Versioning -->
<Project_Major>4</Project_Major>
<Project_Minor>0</Project_Minor>
<Project_Build>0</Project_Build>
<AssemblyVersion_Build>0</AssemblyVersion_Build> <!-- By default it's (and should be) equal to $(Project_Build) -->
<!-- Project folders -->
<BuildScriptsPath Condition="'$(BuildScriptsPath)' ==''">$(RootPath)\buildscripts</BuildScriptsPath>
</PropertyGroup>
<!--
Conditional compilation symbols. This cannot be an item group, otherwise the item group doesn't
expand when included in a property and shows with the @() syntax in the project properties pane
and breaks ReSharper.
-->
<PropertyGroup>
<AdditionalDefineConstants></AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_APPDOMAIN</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_ASSEMBLYBUILDER_SAVE</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_BINDINGLIST</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_DICTIONARYADAPTER_XML</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_EMIT_CUSTOMMODIFIERS</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_EVENTLOG</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_GAC</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_GET_REFERENCED_ASSEMBLIES</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_IDATAERRORINFO</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_ISUPPORTINITIALIZE</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_LISTSORT</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_REMOTING</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_SECURITY_PERMISSIONS</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_SERIALIZATION</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_SMTP</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_SYSTEM_CONFIGURATION</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_TARGETEXCEPTION</AdditionalDefineConstants>
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_TEST_COM</AdditionalDefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' != 'NET45-Debug' and '$(Configuration)' != 'NET45-Release' ">
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_LEGACY_REFLECTION_API</AdditionalDefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'NET45-Debug' or '$(Configuration)' == 'NET45-Release' ">
<AdditionalDefineConstants>$(AdditionalDefineConstants) FEATURE_TEST_SERILOGINTEGRATION</AdditionalDefineConstants>
</PropertyGroup>
<ItemGroup>
<!--
Specify additional items to package here, they are added to the package
in addition to automatically detected dependencies.
The items are resolved relative to $(OutputPath)
-->
<PackageFiles Include="$(OutputPath)log4net.dll" Condition="Exists('$(OutputPath)log4net.dll')"/>
<PackageFiles Include="$(OutputPath)log4net.xml" Condition="Exists('$(OutputPath)log4net.xml')"/>
<PackageFiles Include="$(OutputPath)NLog.dll" Condition="Exists('$(OutputPath)NLog.dll')"/>
<PackageFiles Include="$(OutputPath)NLog.xml" Condition="Exists('$(OutputPath)NLog.xml')"/>
<PackageFiles Include="$(OutputPath)Serilog.dll" Condition="Exists('$(OutputPath)Serilog.dll')"/>
<PackageFiles Include="$(OutputPath)Serilog.xml" Condition="Exists('$(OutputPath)Serilog.xml')"/>
<PackageFiles Include="$(OutputPath)Serilog.Sinks.ColoredConsole.dll" Condition="Exists('$(OutputPath)Serilog.Sinks.ColoredConsole.dll')"/>
<PackageFiles Include="$(OutputPath)Serilog.Sinks.ColoredConsole.xml" Condition="Exists('$(OutputPath)Serilog.Sinks.ColoredConsole.xml')"/>
</ItemGroup>
<Target Name="_InitializeDynamicProperties">
<PropertyGroup>
<!--
Specify additional items to package here, they are added to the package
in addition to automatically detected dependencies.
<PackageFiles>$(OutputPath)Assembly.dll</PackageFiles>
-->
</PropertyGroup>
</Target>
<!-- Import project specific settings for given Visual Studio project -->
<Import
Project="$(MSBuildProjectDirectory)\Settings.proj"
Condition="'$(TargetFrameworkVersion)' != '' and Exists('$(MSBuildProjectDirectory)\Settings.proj')"
/>
<!-- Import framework version specific settings, like Settings-v3.5 or Settings-v4.0 -->
<Import
Project="$(RootPath)\Settings-$(TargetFrameworkVersion).proj"
Condition="'$(TargetFrameworkVersion)' != '' and Exists('$(RootPath)\Settings-$(TargetFrameworkVersion).proj')"
/>
</Project>