Add Newtonsoft.Json to the references of TestSiteBrail
[castle.git] / Components / Binder / Castle.Components.Binder.Tests / Castle.Components.Binder.Tests.build
blob4f3f471e6cd4e9d2a82cb2d9a76ea3389d79553f
1 <?xml version="1.0" encoding='iso-8859-1' ?>
2 <project
3 name="Castle.Components.Binder.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 <property name="assembly.description" value="The Unit Tests for Castle.Components.Binder" />
14 <assemblyfileset id="project.references" basedir="${build.dir}">
15 <include name="nunit.framework.dll" />
16 <include name="Nullables.dll" />
17 <include name="Castle.Core.dll" />
18 <include name="Castle.Components.Binder.dll" />
19 <include name="Castle.Components.Validator.dll" />
20 <include name="System.Data.dll" />
21 <include name="System.Web.dll" />
22 </assemblyfileset>
23 </target>
25 <target name="generate-assemblyinfo" depends="init common.generate-assemblyinfo" />
27 <target name="test" depends="init generate-assemblyinfo common.compile-tests common.run-tests" description="Runs the tests" />
29 </project>