Update of /cvsroot/springnet/Spring.Net
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv25345
Modified Files:
Spring.build Spring.include
Log Message:
SPRNET-935 - Release DLLs built with /DEBUG:pdbonly
Index: Spring.build
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/Spring.build,v
retrieving revision 1.197
retrieving revision 1.198
diff -C2 -d -r1.197 -r1.198
*** Spring.build 29 Apr 2008 04:06:01 -0000 1.197
--- Spring.build 2 May 2008 20:34:40 -0000 1.198
***************
*** 445,476 ****
<target name="build-1.0">
<call target="set-build-namespaces-release"/>
! <echo message="-------------------"/>
! <echo message="Building .NET 1.0 "/>
! <echo message="-------------------"/>
<call target="set-debug-build-configuration"/>
<call target="compile-build-1.0"/>
</target>
<target name="build-1.1">
<call target="set-build-namespaces-release"/>
! <echo message="-------------------"/>
! <echo message="Building .NET 1.1 "/>
! <echo message="-------------------"/>
<call target="set-debug-build-configuration"/>
<call target="compile-build-1.1"/>
</target>
<target name="build-2.0">
<call target="set-build-namespaces-release"/>
! <echo message="-------------------"/>
! <echo message="Building .NET 2.0 "/>
! <echo message="-------------------"/>
<call target="set-debug-build-configuration"/>
<call target="compile-build-2.0"/>
</target>
<target name="build-mono-2.0">
! <call target="set-build-namespaces-release"/>
<echo message="--------------------------"/>
<echo message="Building MONO 2.0 DEBUG "/>
--- 445,509 ----
<target name="build-1.0">
<call target="set-build-namespaces-release"/>
! <echo message="------------------------"/>
! <echo message="Building .NET 1.0 DEBUG "/>
! <echo message="----------------------- "/>
<call target="set-debug-build-configuration"/>
<call target="compile-build-1.0"/>
+ <if test="${property::exists('project.build.package') and project.build.package}">
+ <echo message="--------------------------"/>
+ <echo message="Building .NET 1.0 RELEASE "/>
+ <echo message="--------------------------"/>
+ <call target="set-release-build-configuration"/>
+ <call target="compile-build-1.0"/>
+ </if>
+
</target>
<target name="build-1.1">
<call target="set-build-namespaces-release"/>
! <echo message="------------------------"/>
! <echo message="Building .NET 1.1 DEBUG "/>
! <echo message="------------------------"/>
<call target="set-debug-build-configuration"/>
<call target="compile-build-1.1"/>
+
+ <if test="${property::exists('project.build.package') and project.build.package}">
+ <echo message="------------------------"/>
+ <echo message="Building .NET 1.1 DEBUG "/>
+ <echo message="------------------------"/>
+ <call target="set-release-build-configuration"/>
+ <call target="compile-build-1.1"/>
+ </if>
</target>
<target name="build-2.0">
<call target="set-build-namespaces-release"/>
! <echo message="------------------------"/>
! <echo message="Building .NET 2.0 DEBUG "/>
! <echo message="------------------------"/>
<call target="set-debug-build-configuration"/>
<call target="compile-build-2.0"/>
+
+
+ <if test="${property::exists('project.build.package') and project.build.package}">
+ <echo message="--------------------------"/>
+ <echo message="Building .NET 2.0 RELEASE "/>
+ <echo message="--------------------------"/>
+ <call target="set-release-build-configuration"/>
+ <call target="compile-build-2.0"/>
+ </if>
</target>
<target name="build-mono-2.0">
!
! <if test="${property::exists('project.build.package') and project.build.package}">
! <call target="set-release-build-configuration"/>
! <echo message="--------------------------"/>
! <echo message="Building MONO 2.0 RELEASE "/>
! <echo message="--------------------------"/>
! <call target="compile-build-mono-2.0"/>
! </if>
!
<echo message="--------------------------"/>
<echo message="Building MONO 2.0 DEBUG "/>
***************
*** 478,481 ****
--- 511,515 ----
<call target="set-debug-build-configuration"/>
<call target="compile-build-mono-2.0"/>
+
</target>
Index: Spring.include
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/Spring.include,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Spring.include 29 Apr 2008 04:06:01 -0000 1.11
--- Spring.include 2 May 2008 20:34:40 -0000 1.12
***************
*** 258,262 ****
<property name="compiler.args" value=""/>
<property name="net-2.0" value="false"/>
! <property name="build.debug" value="true"/>
<property name="build.defines.csc" value="DEBUG,TRACE"/>
<property name="build.defines.jsc" value="DEBUG,TRACE"/>
--- 258,262 ----
<property name="compiler.args" value=""/>
<property name="net-2.0" value="false"/>
! <property name="build.debug" value="Full"/>
<property name="build.defines.csc" value="DEBUG,TRACE"/>
<property name="build.defines.jsc" value="DEBUG,TRACE"/>
***************
*** 271,275 ****
<property name="compiler.args" value=""/>
<property name="net-2.0" value="false"/>
! <property name="build.debug" value="false"/>
<property name="build.defines.csc" value="TRACE,STRONG"/>
<property name="build.defines.jsc" value="TRACE,STRONG"/>
--- 271,275 ----
<property name="compiler.args" value=""/>
<property name="net-2.0" value="false"/>
! <property name="build.debug" value="PdbOnly"/>
<property name="build.defines.csc" value="TRACE,STRONG"/>
<property name="build.defines.jsc" value="TRACE,STRONG"/>
|