summaryrefslogtreecommitdiff
path: root/projectName.build
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2007-06-10 19:26:57 -0600
committermo khan <mo@mokhan.ca>2007-06-10 19:26:57 -0600
commitfad18020a7a15f4afdf425d8f5f2b9467141f598 (patch)
treefe99ea45a011c436ec2d8acaa5e5cd9780ff46f3 /projectName.build
import from svntrunkmain
Diffstat (limited to 'projectName.build')
-rw-r--r--projectName.build32
1 files changed, 32 insertions, 0 deletions
diff --git a/projectName.build b/projectName.build
new file mode 100644
index 0000000..0c8a847
--- /dev/null
+++ b/projectName.build
@@ -0,0 +1,32 @@
+<?xml version="1.0"?>
+<project name="BloggerToDasBlog" default="all">
+
+ <property name="debug" value="true" />
+
+ <target name="all"
+ depends="clean, init, compile"
+ description="Clean, build" />
+
+ <target name="clean" description="remove all build products">
+ <delete dir="build" if="${directory::exists('build')}" />
+ </target>
+
+ <target name="init">
+ <mkdir dir="build" />
+ </target>
+
+ <target name="compile"
+ depends="init"
+ description="compiles the application">
+ <csc target="library" output="build\${project::get-name()}.dll" debug="${debug}">
+ <sources>
+ <include name="src\app\**\*.cs" />
+ <exclude name="src\app\**\AssemblyInfo.cs" />
+ </sources>
+ <references>
+ <include name="lib\newtelligence.DasBlog.Runtime.dll" />
+ </references>
+ </csc>
+ </target>
+
+</project> \ No newline at end of file