mirror of https://github.com/apache/activemq.git
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<project name="OpenWire.Core" default="build">
|
||
|
<!--
|
||
|
Required properties:
|
||
|
* build.dir - (path) root level to build to, assemblies will go in ${build.dir}/bin
|
||
|
* build.debug - (true|false) debug build?
|
||
|
* current.build.defines - framework-specific build defines
|
||
|
-->
|
||
|
<target name="build">
|
||
|
<!-- build OpenWire.Core -->
|
||
|
<csc target="library" define="${current.build.defines}" warnaserror="true" debug="${build.debug}" output="${build.dir}/bin/${project.name}.dll" doc="${build.dir}/bin/${project.name}.xml">
|
||
|
<nowarn>
|
||
|
<!-- do not report warnings for missing XML comments -->
|
||
|
<warning number="1591" />
|
||
|
<!-- do not report deprecation warnings -->
|
||
|
<warning number="0618" />
|
||
|
</nowarn>
|
||
|
<sources failonempty="true">
|
||
|
<include name="**/*.cs" />
|
||
|
<!-- common assembly-level attributes -->
|
||
|
<include name="../CommonAssemblyInfo.cs" />
|
||
|
</sources>
|
||
|
<resources basedir="Resources">
|
||
|
<include name="**/*" />
|
||
|
</resources>
|
||
|
<references>
|
||
|
<include name="${build.dir}/bin/log4net.dll"/>
|
||
|
<include name="System.Web.dll"/>
|
||
|
</references>
|
||
|
</csc>
|
||
|
</target>
|
||
|
</project>
|