forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNHibernate.DomainModel.build
36 lines (28 loc) · 1.2 KB
/
NHibernate.DomainModel.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" ?>
<project
name="NHibernate.DomainModel"
default="build"
xmlns="http://nant.sf.net/release/0.85-rc3/nant.xsd"
>
<property name="root.dir" value="../.." />
<include buildfile="${root.dir}/build-common/common-project.xml" />
<target name="init" depends="common.init">
<property name="assembly.is-cls-compliant" value="false" />
<property name="assembly.description" value="The Domain Model used by the Unit Tests." />
<property name="clover.instrument" value="false" />
<assemblyfileset id="project.references" basedir="${bin.dir}">
<include name="System.dll" />
<include name="System.XML.dll" />
<include name="System.Data.dll" />
<include name="Iesi.Collections.dll" />
<include name="NHibernate.dll" />
</assemblyfileset>
<resourcefileset id="project.resources" prefix="NHibernate.DomainModel" dynamicprefix="true">
<include name="**/*.xml" />
<exclude name="bin/**/*.xml" />
</resourcefileset>
</target>
<target name="generate-assemblyinfo" depends="init common.generate-assemblyinfo" />
<target name="build" description="Build the DomainModel that will be used by the Tests"
depends="init generate-assemblyinfo common.compile-dll" />
</project>