List:Commits« Previous MessageNext Message »
From:rburnett Date:May 1 2007 10:40pm
Subject:Connector/NET commit: r696 - trunk
View as plain text  
Modified:
   trunk/CHANGES
   trunk/Client.build
Log:
Bug #27765  	Logging does not work

Fixed this by making sure the TRACE constant is defined in client.build

Modified: trunk/CHANGES
===================================================================
--- trunk/CHANGES	2007-05-01 20:38:21 UTC (rev 695)
+++ trunk/CHANGES	2007-05-01 20:40:50 UTC (rev 696)
@@ -21,6 +21,7 @@
   Bug #26147 "User Id" problem during connection creation 
   Bug #27240 Property value characterset not retrieved/fetched in conn wizard 
   Bug #25947 CreateFormat/CreateParameters Column of DataTypes collection incorrect for
CHAR 
+  Bug #27765 Logging does not work
    
   Other changes
   -------------

Modified: trunk/Client.build
===================================================================
--- trunk/Client.build	2007-05-01 20:38:21 UTC (rev 695)
+++ trunk/Client.build	2007-05-01 20:40:50 UTC (rev 696)
@@ -46,7 +46,7 @@
     </resgen>
 
     <csc output="${outdir}/MySql.Data.dll" target="library"
-			define="${defines}" debug="${debug}" optimize="${opt}" keycontainer="ConnectorNet"
+			define="TRACE ${defines}" debug="${debug}" optimize="${opt}"
keycontainer="ConnectorNet"
 			doc="${outdir}/MySql.Data.xml">
       <arg value="/nowarn:0679,1591,2029"/>
       <resources prefix="MySql.Data.MySqlClient.Source">
@@ -67,10 +67,10 @@
     <property name="outdir" value="Driver/bin/${framework}/${buildType}"/>
 
     <csc output="${outdir}/MySql.Data.Tests.dll" target="library"
-			define="${defines}" debug="${debug}" optimize="${opt}">
+			define="TRACE ${defines}" debug="${debug}" optimize="${opt}">
       <arg value="/nowarn:0679,2029"/>
       <sources>
-        <include name="TestSuite/*.cs" />
+        <include name="TestSuite/source/*.cs" />
       </sources>
       <references>
         <include name="${outdir}/MySql.Data.dll"/>

Thread
Connector/NET commit: r696 - trunkrburnett1 May