-
Notifications
You must be signed in to change notification settings - Fork 67
/
default.build
29 lines (24 loc) · 1017 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
29
<?xml version="1.0" encoding="UTF-8" ?>
<project xmlns="http://nant.sf.net/release/0.85-rc4/nant.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://nant.sf.net/release/0.85-rc4/nant.xsd nant.xsd" name="NMG"
default="all" basedir=".">
<target name="all" depends="clean, compile, test">
</target>
<target name="compile">
<exec basedir="C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE" program="devenv.com" failonerror="true" >
<arg value="NMG.sln" />
<arg value="/build" />
</exec>
</target>
<target name="clean">
<exec basedir="C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE" program="devenv.com" failonerror="true" >
<arg value="NMG.sln" />
<arg value="/clean" />
</exec>
</target>
<target name="test">
<exec basedir="Lib\NUnit" program="nunit-console.exe" failonerror="true" >
<arg value="NMG.Tests\bin\Debug\NMG.Tests.dll" />
</exec>
</target>
</project>