trunk
1<?xml version="1.0"?>
2<project name="BloggerToDasBlog" default="all">
3
4 <property name="debug" value="true" />
5
6 <target name="all"
7 depends="clean, init, compile"
8 description="Clean, build" />
9
10 <target name="clean" description="remove all build products">
11 <delete dir="build" if="${directory::exists('build')}" />
12 </target>
13
14 <target name="init">
15 <mkdir dir="build" />
16 </target>
17
18 <target name="compile"
19 depends="init"
20 description="compiles the application">
21 <csc target="library" output="build\${project::get-name()}.dll" debug="${debug}">
22 <sources>
23 <include name="src\app\**\*.cs" />
24 <exclude name="src\app\**\AssemblyInfo.cs" />
25 </sources>
26 <references>
27 <include name="lib\newtelligence.DasBlog.Runtime.dll" />
28 </references>
29 </csc>
30 </target>
31
32</project>