File tree 1 file changed +26
-0
lines changed
1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ <project name="Mooege-NAnt-build" default="rebuild">
2
+ <!-- This build requires NAnt + NAnt Contrib to run -->
3
+ <property name="configuration" value="release"/>
4
+ <target name="clean" description="Delete all previously compiled binaries.">
5
+ <delete>
6
+ <fileset>
7
+ <include name="../src/mooege/**/bin/**" />
8
+ <include name="../src/mooege/**/obj/**" />
9
+ <include name="../src/mooege/**/*.suo" />
10
+ <include name="../src/mooege/**/*.user" />
11
+ </fileset>
12
+ </delete>
13
+ </target>
14
+
15
+ <target name="build" description="Build all targets.">
16
+ <call target="build.Mooege"/>
17
+ </target>
18
+
19
+ <target name="rebuild" depends="clean, build" />
20
+
21
+ <target name="build.Mooege">
22
+ <msbuild project="../src/mooege/Mooege-VS2010.csproj">
23
+ </msbuild>
24
+ </target>
25
+
26
+ </project>
You can’t perform that action at this time.
0 commit comments