Updates to build file for mono - thanks James Fitzsimons

Included Spring.Scheduling.Quartz into the build process
Fix Spring.Messaging.Nms 2003 solution
This commit is contained in:
markpollack
2008-08-08 18:05:23 +00:00
parent 45a9d27989
commit ac8e34dc6a

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" ?>
<project name="Spring.Scheduling.Quartz" default="build" xmlns="http://nant.sf.net/schemas/nant.xsd">
<!--
Required properties:
* current.bin.dir - (path) root level to build to
* current.build.debug - (true|false) debug build?
* current.build.defines.csc - framework-specific build defines for C# compiler
-->
<target name="build">
<csc target="library" define="${current.build.defines.csc}"
warnaserror="false"
debug="${current.build.debug}"
output="${current.bin.dir}/${project::get-name()}.dll"
doc="${current.bin.dir}/${project::get-name()}.xml"
>
<arg line="${compiler.args}"/>
<nowarn>
<warning number="1591" />
</nowarn>
<sources failonempty="true">
<include name="**/*.cs" />
<include name="../GenCommonAssemblyInfo.cs" />
</sources>
<references basedir="${current.bin.dir}">
<include name="*.dll" />
<include name="System.Data.Dll" />
<exclude name="${project::get-name()}.dll" />
<exclude name="CloverRuntime.dll" />
</references>
</csc>
</target>
</project>