Added asynchronous result support to SynchronizeFacility.
[castle.git] / InversionOfControl / Castle.Windsor.Tests / Castle.Windsor.Tests.build
blob569e7b55d09c8a48ea7932a1088e9ca9640ba7e5
1 <?xml version="1.0" encoding='iso-8859-1' ?>
2 <project
3 name="Castle.Windsor.Tests"
4 default="test"
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 <target name="init" depends="common.init">
12 <assemblyfileset id="project.references" basedir="${build.dir}">
13 <include name="nunit.framework.dll" />
14 <include name="Castle.Core.dll" />
15 <include name="Castle.DynamicProxy2.dll" />
16 <include name="Castle.MicroKernel.dll" />
17 <include name="Castle.Windsor.dll" />
18 <include name="System.Configuration.dll" />
19 </assemblyfileset>
21 <resourcefileset id="project.resources" basedir="${src.dir}" prefix="${project::get-name()}" dynamicprefix="true">
22 <include name="**/*.xml" />
23 <exclude name="obj/**" />
24 </resourcefileset>
25 </target>
27 <target name="generate-assemblyinfo" depends="init common.generate-assemblyinfo" />
29 <target name="test" depends="init generate-assemblyinfo common.compile-tests common.run-tests" description="Runs the tests" />
31 </project>