summaryrefslogtreecommitdiff
path: root/projectName.build
blob: 0c8a847ea7d85cdfb344617ef6021e99d142d99a (plain)
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
<?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>