Fixing an issue with output parameters that are of type IntPtr
[castle.git] / cruise.build
blobb80aeadfd09a0a13a5fbd0bfa4aa00cf70c94ef4
1 <?xml version="1.0" encoding="utf-8" ?>
2 <project
3 name="Castle CruiseControl.NET Build"
4 xmlns="http://nant.sf.net/release/0.85/nant.xsd"
6 <!--
7 Run the package-* targets one by one (separate nant task blocks in ccnet.config) so they do not interfere with each other (like for instance loadtask commands do).
8 -->
10 <fail if="${not property::exists('CCNetLabel')}">This build file is for use with CruiseControl.NET</fail>
12 <target name="package-net-2.0">
13 <!--
14 clean is first target executed so we can get rid of
15 any old assemblies
16 -->
17 <nant buildfile="default.build" target="clean package">
18 <properties>
19 <property name="build.rebuild" value="true" />
20 <property name="nant.settings.currentframework" value="net-2.0" />
21 <property name="project.config" value="debug" />
22 <property name="build.zip.file" value="castleproject-${project.major}.${project.minor}-build_${CCNetLabel}-${framework::get-target-framework()}-${project.config}.zip" dynamic="true" />
23 <property name="build.msi.file" value="castleproject-${project.major}.${project.minor}-build_${CCNetLabel}-${framework::get-target-framework()}-${project.config}.msi" dynamic="true" />
24 </properties>
25 </nant>
26 </target>
28 </project>