Applied patch for turning off debug flag for release builds to all project configurations.  The nant-common.xml file is shared among all projects.
Fixes [AMQNET-145]. (See https://issues.apache.org/activemq/browse/AMQNET-145)

diff --git a/nant-common.xml b/nant-common.xml
index 92e21fe..a4dc629 100644
--- a/nant-common.xml
+++ b/nant-common.xml
@@ -169,7 +169,7 @@
     <property name="current.build.config"           value="release" />
     <property name="current.build.config.release"   value="true" />
     <property name="current.build.config.debug"     value="false" />
-    <property name="csc.debug"                      value="true" />
+    <property name="csc.debug"                      value="false" />
     <property name="csc.optimize"                   value="true" />
   </target>