-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathdefault.build
28 lines (23 loc) · 921 Bytes
/
default.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
<?xml version="1.0"?>
<project
name="NHibernate.Caches.SysCache"
default="common.compile-all"
description="NHibernate cache provider using the integrated ASP.NET cache"
xmlns="http://nant.sf.net/release/0.85/nant.xsd">
<property name="root.dir" value=".." />
<include buildfile="${root.dir}/buildcommon.xml" />
<target name="prepare-bin-pack-specific" depends="init">
<property name="bin-pack.project.name" value="SysCache" />
</target>
<target name="bin-pack" depends="init prepare-bin-pack-specific bin-pack-common">
</target>
<target name="test" depends="init">
<property name="test.project" value="SysCache" />
<property name="test.file" value="NHibernate.Caches.SysCache.Tests" />
<call target="common.run-tests" />
</target>
<target name="clean">
<property name="clean.project" value="SysCache" />
<call target="common.clean" />
</target>
</project>