forked from IronLanguages/main
-
Notifications
You must be signed in to change notification settings - Fork 4
/
nant.build
62 lines (47 loc) · 1.38 KB
/
nant.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0"?>
<project name="IronLanguages" basedir=".">
<target name="all">
<!--
<call target="dlr" />
<call target="ironstudio" />
<call target="ironruby.rack" />
<call target="ironpythontools" />-->
<call target="ironpython" />
<call target="ironpython.mono" />
<call target="ruby" />
</target>
<target name="dlr">
<property name="solution" value="Dlr" />
<call target="build" />
</target>
<target name="ironpython.mono">
<property name="solution" value="IronPython.Mono" />
<call target="build" />
</target>
<target name="ironpython">
<property name="solution" value="IronPython" />
<call target="build" />
</target>
<target name="ironpythontools">
<property name="solution" value="IronPythonTools" />
<call target="build" />
</target>
<target name="ironruby.rack">
<property name="solution" value="IronRuby.Rack" />
<call target="build" />
</target>
<target name="ironstudio">
<property name="solution" value="IronStudio" />
<call target="build" />
</target>
<target name="ruby">
<property name="solution" value="Ruby" />
<call target="build" />
</target>
<target name="build">
<msbuild project="Solutions\${solution}.sln">
<arg value="/property:Configuration=Debug" />
<arg value="/t:Rebuild" />
</msbuild>
</target>
</project>