Fixing MR-340, if ?Errors doesn't work correctly.
[castle.git] / common.xml
blob51cb51489315f7a4979c0bd0d6c624df109631c2
1 <?xml version="1.0"?>\r
2 <project name="Castle" xmlns="http://nant.sf.net/release/0.85/nant.xsd">\r
3         <!-- \r
4                 Use this to determine if the key file CastleKey.snk should be used to \r
5                 sign the assemblies. Defaults to true since private key is present\r
6                 in SVN.\r
7         -->\r
8         <property name="sign" value="true" overwrite="false" />\r
9         <property name="key.file" value="${path::get-full-path(root.dir)}/CastleKey.snk" />\r
11         <!-- Controls whether tests are run. Setting this is as input to the build disables *all* tests. -->\r
12         <property name="common.run-tests" value="true" overwrite="false" />\r
13         <property name="common.testrunner.enabled" value="${common.run-tests}" overwrite="false" />\r
14         <property name="common.testrunner.failonerror" value="true" overwrite="false" /> <!--  Whether to keep building when tests are failing -->\r
16         <!-- Check which nant version we're using - fail if it's not the minium  -->\r
17         <property name="current.nant-version" value="${assemblyname::get-version(assembly::get-name(nant::get-assembly()))}" />\r
18         <property name="required.nant-version" value="0.85.2478.0" /> <!-- Nant 0.85 release version -->\r
20         <!-- properties used to connect to database for testing -->\r
21         <property name="ar.dialect" value="NHibernate.Dialect.MsSql2000Dialect" overwrite="false" />\r
22         <property name="ar.connection.driver_class" value="NHibernate.Driver.SqlClientDriver" overwrite="false" />\r
23         <property name="ar.connection.connection_string.1" value="Server=(local);initial catalog=test;Integrated Security=SSPI" overwrite="false" />\r
24         <property name="ar.connection.connection_string.2" value="Server=(local);initial catalog=test2;Integrated Security=SSPI" overwrite="false" />\r
26         <!-- \r
27                 Path to the folder that contain the external assemblies.  For net-2.0 the values will\r
28                 be lib, lib/net, and lib/net/2.0 respectively.\r
29         -->\r
30         <property name="lib.dir" value="SharedLibs" dynamic="true" />\r
31         <property name="lib.family.dir" value="${path::combine(lib.dir, framework::get-family(framework::get-target-framework()))}" dynamic="true" />\r
32         <property name="lib.framework.dir" value="${path::combine(lib.family.dir, version::to-string(framework::get-version(framework::get-target-framework())))}" dynamic="true" />\r
34         <!-- \r
35                 Versioning\r
36         -->\r
37         <property name="project.version"        value="1.1.0.0" overwrite="false" />\r
38         <property name="project.major"          value="${version::get-major(version::parse(project.version))}"          dynamic="true" />\r
39         <property name="project.minor"          value="${version::get-minor(version::parse(project.version))}"          dynamic="true" />\r
40         <property name="project.build"          value="${version::get-build(version::parse(project.version))}"          dynamic="true" />\r
41         <property name="project.revision"       value="${svn.revision}"                                                                                         dynamic="true" />\r
43         <property name="assembly.major"         value="${version::get-major(version::parse(assembly.version))}"         dynamic="true" />\r
44         <property name="assembly.minor"         value="${version::get-minor(version::parse(assembly.version))}"         dynamic="true" />\r
45         <property name="assembly.build"         value="${version::get-build(version::parse(assembly.version))}"         dynamic="true" />\r
46         <property name="assembly.revision"      value="${version::get-revision(version::parse(assembly.version))}"      dynamic="true" />\r
47         \r
48         <property name="svn.revision" value="0" overwrite="false" />\r
50         <!-- \r
51                 These are used to set the correct attributes in AssemblyInfo.cs.  \r
52         -->\r
53         <property name="project.company" value="Castle Project" />\r
55         <!-- debug|release -->\r
56         <property name="build.defines" value="TRACE" />\r
57         <property name="build.defines" value="${build.defines},STRONG" if="${sign}" />\r
59         <!-- platform specific properties. These are the defaults -->\r
60         <property name="current.build.defines" value="${build.defines}" />\r
62         <!-- named project configurations -->\r
63         <target name="set-debug-project-configuration" description="Perform a 'debug' build">\r
64                 <property name="build.debug"    value="true" />\r
65                 <property name="build.optimize" value="false" overwrite="false" />\r
66         </target>\r
67         \r
68         <target name="set-release-project-configuration" description="Perform a 'release' build">\r
69                 <property name="build.debug"    value="false" />\r
70                 <property name="build.optimize" value="true" overwrite="false" />\r
71         </target>\r
73         <target name="set-project-configuration">\r
74                 <property name="project.config" value="debug" overwrite="false" />\r
75                 <if test="${not(target::exists('set-' + project.config + '-project-configuration'))}">\r
76                         <fail message="Unknown configuration: '${project.config}'" />\r
77                 </if>\r
78                 <property name="build.warnaserrors" value="true" overwrite="false" />\r
79                 <property name="build.warnmissingdocs" value="false" overwrite="false" />\r
80                 <call target="set-${project.config}-project-configuration" />\r
82                 <property name="src.dir"                        value="${path::get-full-path(project::get-base-directory())}" />\r
83                 <property name="build.base.dir"         value="${path::get-full-path(root.dir)}/build" />\r
84                 <property name="build.family.dir"       value="${build.base.dir}/${nant.settings.currentframework}" />\r
85                 <property name="build.dir"                      value="${path::get-full-path(path::combine(build.family.dir,project.config))}" dynamic="true" />\r
86                 <property name="testresults.dir"        value="${build.dir}/test-results" />\r
87                 <property name="releasenotes.dir"       value="${build.dir}/ReleaseNotes" />\r
88                 <property name="docs.dir"                       value="${build.base.dir}/docs" />\r
89                 <property name="build.rebuild"          value="false" overwrite="false" />\r
90         </target>\r
92         <target name="set-framework-configuration">\r
93                 <if test="${not(target::exists('set-'+framework::get-target-framework()+'-framework-configuration'))}">\r
94                         <fail message="The '${framework::get-target-framework()}' framework is not supported by this version of Cast;e." />\r
95                 </if>\r
96                 <property name="csc.keyfile"    value="" />\r
97                 <property name="csc.args"               value="" />\r
98                 <call target="set-${framework::get-target-framework()}-framework-configuration" />\r
100                 <property name="build.msbuild"  value="false" overwrite="false" />\r
102         </target>\r
104         <target name="set-net-2.0-framework-configuration">\r
105                 <property name="nant.settings.currentframework" value="net-2.0" />\r
106                 <property name="current.build.defines" value="${build.defines},NET,DOTNET2" />\r
107                 <property name="link.sdkdoc.version" value="SDK_v2_0" />\r
108                 <property name="merge.targetplatform" value="v2" />\r
109                 <property name="csc.keyfile" value="/keyfile:${key.file}" />\r
110                 <!-- If DevEnvDir exists, we grab it, otherwise we try if the default location (if it exists) -->\r
111                 <if test="${environment::variable-exists('DevEnvDir')}">\r
112                         <property name="dev.env.dir" value="${environment::get-variable('DevEnvDir')}" />\r
113                 </if>\r
114                 <if test="${not environment::variable-exists('DevEnvDir')}">\r
115                         <property name="default.dev.env.dir" value="%ProgramFiles%\Microsoft Visual Studio 8\Common7\IDE" />\r
116                         <if test="${directory::exists(default.dev.env.dir)}">\r
117                                 <property name="dev.env.dir" value="${default.dev.env.dir}" />\r
118                         </if>\r
119                 </if>\r
120                 <property name="build.msbuild"  value="false" overwrite="false" />\r
121                 <property name="project.vsproj" value="${project::get-name()}-vs2005.csproj" />\r
122         </target>\r
124         <target name="set-mono-1.0-framework-configuration">\r
125                 <property name="nant.settings.currentframework" value="mono-1.0" />\r
126                 <property name="current.build.defines" value="${build.defines},MONO,MONO1" />\r
127                 <property name="link.sdkdoc.version" value="MsdnOnline" />\r
128                 <!-- mono puts gacutil on PATH -->\r
129                 <property name="gacutil.file" value="gacutil" />\r
130                 <property name="build.warnaserrors" value="false" />\r
131         </target>\r
132         \r
133         <target name="set-mono-2.0-framework-configuration">\r
134                 <property name="nant.settings.currentframework" value="mono-2.0" />\r
135                 <property name="current.build.defines" value="${build.defines},MONO,MONO2,DOTNET2" />\r
136                 <property name="link.sdkdoc.version" value="MsdnOnline" />\r
137                 <!-- mono puts gacutil on PATH -->\r
138                 <property name="gacutil.file" value="gacutil" />\r
139                 <property name="build.warnaserrors" value="false" />\r
140         </target>\r
142         <target name="display-current-runtime">\r
143                 <echo message="" />\r
144                 <echo message="----------------------------------------------------------" />\r
145                 <echo message=" ${framework::get-description(framework::get-target-framework())}" />\r
146                 <echo message="----------------------------------------------------------" />\r
147                 <echo message="" />\r
148                 <echo message="framework : ${framework::get-target-framework()}" />\r
149                 <echo message="description : ${framework::get-description(framework::get-target-framework())}" />\r
150                 <echo message="sdk directory : ${framework::get-sdk-directory(framework::get-target-framework())}" />\r
151                 <echo message="framework directory : ${framework::get-framework-directory(framework::get-target-framework())}" />\r
152                 <echo message="assembly directory : ${framework::get-assembly-directory(framework::get-target-framework())}" />\r
153                 <echo message="runtime engine : ${framework::get-runtime-engine(framework::get-target-framework())}" />\r
154                 <echo message="" />\r
155         </target>\r
157         <target name="common.init"\r
158                 depends="common.check-nant-version common.find-tools set-framework-configuration set-project-configuration"\r
159                 description="Initializes build properties">\r
161                 <fileset id="project.sources" failonempty="true">\r
162                         <include name="${src.dir}/**/*.cs" />\r
163                 </fileset>\r
164                 <resourcefileset id="project.resources" />\r
165         </target>\r
166         \r
167         <target name="common.find-svninfo">\r
168                 <!-- For adding SVN revision to builds -->\r
169                 <property name="svn.revision" value="0" overwrite="false" />\r
170                 <!-- try to update the revision -->\r
171                 <exec\r
172                         program="svn"\r
173                         commandline='info "${project::get-base-directory()}" --xml'\r
174                         output="_revision.xml"\r
175                         failonerror="false"/>\r
176                 <xmlpeek\r
177                         file="_revision.xml"\r
178                         xpath="/info/entry/@revision"\r
179                         property="svn.revision"\r
180                         failonerror="false"/>\r
181                 <delete file="_revision.xml" failonerror="false" />\r
182                 <echo message="INFO: Using Subversion revision number: ${svn.revision}"/>\r
183         </target>\r
185         <target name="common.find-nunit">\r
186                 <if test="${not property::exists('nunit.found')}">\r
187                         <exec \r
188                                 program="${mbunit-console}" \r
189                                 resultproperty="mbunit.found"\r
190                                 failonerror="false" />\r
192                         <property name="mbunit.found" value="${mbunit.found == '0' and string::to-lower(testrunner)=='mbunit'}" readonly="true" />\r
193                         \r
194                         <property name="nunit.found" value="-1" />\r
195                         <exec\r
196                                 unless="${mbunit.found}"\r
197                                 program="${nunit-console2}" \r
198                                 resultproperty="nunit.found"\r
199                                 failonerror="false" />\r
201                         <property name="nunit-console" value="${nunit-console2}" if="${nunit.found == '0'}" />\r
203                         <exec unless="${mbunit.found or nunit.found == '0'}"\r
204                                 program="${nunit-console}" \r
205                                 resultproperty="nunit.found"\r
206                                 failonerror="false" />\r
208                         <property name="nunit.found" value="${nunit.found == '0'}" readonly="true" />\r
210                         <echo message="INFO: Using MBUnit for running unit tests" if="${mbunit.found}"/>\r
211                         <echo message="INFO: Using NUnit for running unit tests" if="${nunit.found}"/>\r
212                         <echo message="WARNING: MBUnit or NUnit not found, using less predictable NAnt &lt;nunit2&gt; task" unless="${nunit.found or mbunit.found}"/>\r
213                 </if>\r
214         </target>\r
216         <target name="common.check-nant-version">\r
217                 <fail if="${current.nant-version&lt;required.nant-version}" message="Not using minimum required Nant version: ${required.nant-version} (current version: ${current.nant-version}). Please upgrade your copy of nant." />\r
218         </target>\r
220         <target name="common.find-tools">\r
221                 <!-- Where is MbUnit.Cons.exe ? -->\r
222                 <property name="mbunit-console" value="MbUnit.Cons.exe" overwrite="false" />\r
224                 <!-- Where is nunit-console executable(win/mono) ? -->\r
225                 <property name="nunit-console2" value="nunit-console2" overwrite="false" />\r
226                 <property name="nunit-console" value="nunit-console" overwrite="false" />\r
228                 <property name="testrunner" value="NUnit" />\r
230                 <!-- Where is WiX? -->\r
231                 <property name="wix.dir" value="${environment::get-folder-path('ProgramFiles')}\Windows Installer XML v3\bin" overwrite="false" />\r
233                 <!-- Where is Sandcastle Help File Builder (SHFB)? -->\r
234                 <property name="shfb.dir" value="${environment::get-folder-path('ProgramFiles')}\EWSoftware\Sandcastle Help File Builder" overwrite="false" />\r
235                 \r
236                 <!-- Where is Sandcastle? -->\r
237                 <property name="sandcastle.dir" value="${environment::get-folder-path('ProgramFiles')}\Sandcastle" overwrite="false" />\r
239                 <!-- Where is HTML Help 1.0? -->\r
240                 <property name="htmlhelp1x.dir" value="${environment::get-folder-path('ProgramFiles')}\HTML Help Workshop" overwrite="false" />         \r
241         </target>\r
243 </project>\r