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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
<?xml version="1.0" ?>
<!--
Copyright 2004-2005 The Apache Software Foundation
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 name="log4net-helpers" xmlnds="http://tempuri.org/nant-vs.xsd">
<!-- The path to the log4net output directory for current build/runtime -->
<property
name="log4net.output.dir"
value="${log4net.basedir}/bin/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}"
dynamic="true" />
<target name="check-bin-dir">
<if test="${not property::exists('bin.dir')}">
<property name="bin.dir" value="bin" />
</if>
<mkdir dir="${bin.dir}" />
</target>
<target name="check-build-debug">
<if test="${not property::exists('build.debug')}">
<fail message="The build debug setting has not been specified." />
</if>
</target>
<target name="check-build-defines">
<if test="${not property::exists('build.defines.csc')}">
<fail message="The build defines for the csc task have not been specified." />
</if>
<if test="${not property::exists('build.defines.jsc')}">
<fail message="The build defines for the jsc task have not been specified." />
</if>
<if test="${not property::exists('build.defines.vbc')}">
<fail message="The build defines for the vbc task have not been specified." />
</if>
<if test="${not property::exists('build.defines.vjc')}">
<fail message="The build defines for the vjc task have not been specified." />
</if>
<if test="${not property::exists('build.defines.cl')}">
<fail message="The build defines for the cl task have not been specified." />
</if>
</target>
<target name="check-doc-dir">
<if test="${not property::exists('doc.dir')}">
<property name="doc.dir" value="doc" />
</if>
<mkdir dir="${doc.dir}" />
</target>
<target name="check-sdkdoc-dir" depends="check-doc-dir">
<if test="${not property::exists('sdkdoc.dir')}">
<property name="sdkdoc.dir" value="${doc.dir}/sdk" />
</if>
<!--
Temporarily disabled SDK generation through NAnt build
<mkdir dir="${sdkdoc.dir}" />
-->
</target>
<target name="check-sdkdoc-debug">
<if test="${not property::exists('sdkdoc.debug')}">
<fail message="The sdk documentation debug setting has not been specified." />
</if>
</target>
<target name="check-current-bin-dir">
<if test="${not property::exists('current.bin.dir')}">
<fail message="The current binaries directory has not been specified." />
</if>
<mkdir dir="${current.bin.dir}" />
</target>
<target name="check-current-build-debug">
<if test="${not property::exists('current.build.debug')}">
<fail message="The current build debug setting has not been specified." />
</if>
</target>
<target name="check-current-build-defines">
<if test="${not property::exists('current.build.defines.csc')}">
<fail message="The current build defines for the csc task have not been specified." />
</if>
<if test="${not property::exists('current.build.defines.jsc')}">
<fail message="The current build defines for the jsc task have not been specified." />
</if>
<if test="${not property::exists('current.build.defines.vbc')}">
<fail message="The current build defines for the vbc task have not been specified." />
</if>
<if test="${not property::exists('current.build.defines.vjc')}">
<fail message="The current build defines for the vjc task have not been specified." />
</if>
<if test="${not property::exists('current.build.defines.cl')}">
<fail message="The current build defines for the cl task have not been specified." />
</if>
</target>
<target name="check-current-sdkdoc-dir">
<if test="${not property::exists('current.sdkdoc.dir')}">
<fail message="The current sdk document directory has not been specified." />
</if>
<!--
Temporarily disabled SDK generation through NAnt build
<mkdir dir="${sdkdoc.dir}" />
-->
</target>
<target name="check-current-sdkdoc-debug">
<if test="${not property::exists('current.sdkdoc.debug')}">
<fail message="The curernt sdk documentation debug setting has not been specified." />
</if>
</target>
<target name="check-current-build-config">
<if test="${not property::exists('current.build.config')}">
<if test="${not property::exists('project.build.config')}">
<fail message="The build configuration has not been specified and no default build configuration is available." />
</if>
<if test="${property::exists('project.build.config')}">
<property name="current.build.config" value="${project.build.config}" />
</if>
</if>
</target>
<target name="check-log4net-basedir">
<if test="${not property::exists('log4net.basedir')}">
<fail message="The log4net base directory has not been specified." />
</if>
</target>
<target name="check-log4net-output-dir">
<if test="${not property::exists('log4net.output.dir')}">
<fail message="The log4net output directory has not been specified." />
</if>
</target>
<target name="check-log4net-assembly" depends="check-current-build-config, check-log4net-output-dir">
<if test="${not file::exists(path::combine(log4net.output.dir, 'log4net.dll'))}">
<fail message="The log4net '${current.build.config}' assembly for ${framework::get-description(framework::get-target-framework())} is not available." />
</if>
</target>
<!-- Targets for cleaning up -->
<target name="clean-current-bin-dir" depends="check-current-bin-dir" description="Cleans the current binaries directory">
<echo message="Cleaning the ${current.bin.dir} binaries directory." />
<delete dir="${current.bin.dir}" if="${directory::exists(current.bin.dir)}" />
<mkdir dir="${current.bin.dir}" />
</target>
<target name="clean-current-sdkdoc-dir" depends="check-current-sdkdoc-dir" description="cleaning the current SDK documentation directory">
<echo message="Cleaning the ${current.sdkdoc.dir} SDK documentation directory." />
<!--
Temporarily disabled SDK generation through NAnt build
<delete dir="${current.sdkdoc.dir}" if="${directory::exists(current.sdkdoc.dir)}" />
<mkdir dir="${current.sdkdoc.dir}" />
-->
</target>
<!-- Targets for setting up the environment -->
<target name="set-build-configuration" depends="check-current-build-config">
<if test="${not target::exists('set-' + current.build.config + '-build-configuration')}">
<fail message="The ${current.build.config} build configuration is not supported by log4net." />
</if>
<call target="set-${current.build.config}-build-configuration" />
</target>
<target name="set-debug-build-configuration">
<property name="build.debug" value="true" />
<property name="build.defines.csc" value="DEBUG,TRACE" />
<property name="build.defines.jsc" value="DEBUG,TRACE" />
<property name="build.defines.vbc" value="DEBUG=True,TRACE=True" />
<property name="build.defines.vjc" value="DEBUG,TRACE" />
<property name="build.defines.cl" value="/D _DEBUG" />
<property name="sdkdoc.debug" value="false" />
<property name="current.build.config" value="debug" />
<call target="set-build-configuration-flags" />
</target>
<target name="set-release-build-configuration">
<property name="build.debug" value="false" />
<property name="build.defines.csc" value="TRACE,STRONG" />
<property name="build.defines.jsc" value="TRACE,STRONG" />
<property name="build.defines.vbc" value="TRACE=True,STRONG=True" />
<property name="build.defines.vjc" value="TRACE,STRONG" />
<property name="build.defines.cl" value="/D STRONG" />
<property name="sdkdoc.debug" value="false" />
<property name="current.build.config" value="release" />
<call target="set-build-configuration-flags" />
</target>
<target name="set-build-configuration-flags" depends="check-current-build-config">
<property name="current.build.config.debug" value="false" />
<property name="current.build.config.release" value="false" />
<property name="current.build.config.${current.build.config}" value="true" />
</target>
<target name="set-framework-configuration" depends="check-current-build-config">
<if test="${not target::exists('set-' + framework::get-target-framework() + '-runtime-configuration')}">
<fail message="The current target framework (${framework::get-description(framework::get-target-framework())}) is not supported by log4net." />
</if>
<call target="set-${framework::get-target-framework()}-runtime-configuration" />
</target>
<target name="set-net-1.0-runtime-configuration" depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
<property name="nant.settings.currentframework" value="net-1.0" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},NET,NET_1_0" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},NET,NET_1_0" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},NET=True,NET_1_0=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},NET,NET_1_0" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D NET /D NET_1_0" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
<target name="set-net-1.1-runtime-configuration" depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
<property name="nant.settings.currentframework" value="net-1.1" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},NET,NET_1_1" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},NET,NET_1_1" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},NET=True,NET_1_1=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},NET,NET_1_1" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D NET /D NET_1_1" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
<target name="set-net-2.0-runtime-configuration" depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
<property name="nant.settings.currentframework" value="net-2.0" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},NET,NET_2_0" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},NET,NET_2_0" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},NET=True,NET_2_0=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},NET,NET_2_0" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D NET /D NET_2_0" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
<target name="set-netcf-1.0-runtime-configuration" depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
<property name="nant.settings.currentframework" value="netcf-1.0" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},NETCF,NETCF_1_0" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},NETCF,NETCF_1_0" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},NETCF=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},NETCF" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D NETCF /D NETCF_1_0" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
<target name="set-mono-1.0-runtime-configuration" depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
<property name="nant.settings.currentframework" value="mono-1.0" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},MONO,MONO_1_0" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},MONO,MONO_1_0" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},MONO=True,MONO_1_0=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},MONO,MONO_1_0" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D MONO /D MONO_1_0" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
<target name="set-mono-2.0-runtime-configuration" depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
<property name="nant.settings.currentframework" value="mono-2.0" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},MONO,MONO_2_0" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},MONO,MONO_2_0" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},MONO=True,MONO_2_0=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},MONO,MONO_2_0" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D MONO /D MONO_2_0" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
<target name="set-sscli-1.0-runtime-configuration" depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
<property name="nant.settings.currentframework" value="sscli-1.0" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},SSCLI,SSCLI_1_0" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},SSCLI,SSCLI_1_0" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},SSCLI=True,SSCLI_1_0=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},SSCLI,SSCLI_1_0" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D SSCLI /D SSCLI_1_0" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
<target name="set-cli-1.0-configuration" depends="check-bin-dir">
<property name="nant.settings.currentframework" value="net-1.0" />
<property name="current.build.debug" value="${build.debug}" dynamic="true" />
<property name="current.build.defines.csc" value="${build.defines.csc},CLI,CLI_1_0" dynamic="true" />
<property name="current.build.defines.jsc" value="${build.defines.jsc},CLI,CLI_1_0" dynamic="true" />
<property name="current.build.defines.vbc" value="${build.defines.vbc},CLI=True,CLI_1_0=True" dynamic="true" />
<property name="current.build.defines.vjc" value="${build.defines.vjc},CLI,CLI_1_0" dynamic="true" />
<property name="current.build.defines.cl" value="${build.defines.cl} /D CLI /D CLI_1_0" dynamic="true" />
<property name="current.bin.dir" value="${bin.dir}/cli/1.0/${current.build.config}" />
<property name="current.sdkdoc.dir" value="${sdkdoc.dir}" />
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true" />
</target>
</project>
|