SPRNET-1268 - Spring Exceptions should pass tests to ensure compliance with .NET framework guidelines.

SPRNET-1267 - Add optimize compiler flag for release build
This commit is contained in:
markpollack
2009-11-10 03:04:07 +00:00
parent 333a6e42b2
commit f7a97bfe31
83 changed files with 1115 additions and 32 deletions

View File

@@ -296,6 +296,7 @@
<target name="set-debug-build-configuration">
<property name="compiler.args" value=""/>
<property name="net-2.0" value="false"/>
<property name="build.optimize" value="false"/>
<property name="build.debug" value="Full"/>
<property name="build.defines.csc" value="DEBUG,TRACE"/>
<property name="build.defines.jsc" value="DEBUG,TRACE"/>
@@ -309,6 +310,7 @@
<target name="set-release-build-configuration">
<property name="compiler.args" value=""/>
<property name="net-2.0" value="false"/>
<property name="build.optimize" value="true"/>
<property name="build.debug" value="PdbOnly"/>
<property name="build.defines.csc" value="TRACE,STRONG"/>
<property name="build.defines.jsc" value="TRACE,STRONG"/>