More tests for generic methods with constraints.
[castle.git] / Tools / Tools.build
blob02a780f2b4507d18b1c892fa9f90e31c4bebf72f
1 <?xml version="1.0" encoding='iso-8859-1' ?>
2 <project
3 name="castle-tools"
4 default="build"
5 xmlns="http://nant.sf.net/release/0.85/nant.xsd"
8 <property name="root.dir" value=".." />
9 <include buildfile="${root.dir}/common-project.xml" />
11 <fileset id="buildfiles.all">
12 <!-- Files have to be in dependency order -->
13 <include name="DynamicProxy/DynamicProxy.build" />
14 <include name="Castle.DynamicProxy2/Castle.DynamicProxy2.build" />
15 <include name="NVelocity/nvelocity.build" />
16 </fileset>
18 <target name="build" depends="common.build" />
20 <target name="generate-assemblyinfo" depends="common.assemblyinfo" />
22 <target name="dynamicproxy2">
23 <nant buildfile="Castle.DynamicProxy2/Castle.DynamicProxy2.build" target="build" />
24 </target>
26 <target name="nvelocity">
27 <nant buildfile="NVelocity/nvelocity.build" target="build" />
28 </target>
30 <target name="vsintegration">
31 <nant buildfile="VSNetWizards/VsNetIntegration.build" target="build" />
32 </target>
34 </project>