Sfoglia il codice sorgente

2002-05-01 Daniel Morgan <[email protected]>

	* System.Data.build: added /nowarn: nnnn arguments
	so you will not get a ton of warnings.  The warnings
	being excluded are: 1595, 0067, 0109, 0169, and	0649

svn path=/trunk/mcs/; revision=4214
Daniel Morgan 24 anni fa
parent
commit
a95d80e6f5

+ 6 - 0
mcs/class/System.Data/ChangeLog

@@ -1,3 +1,9 @@
+2002-05-01  Daniel Morgan <[email protected]>
+
+	* System.Data.build: added /nowarn: nnnn arguments 
+	so you will not get a ton of warnings.  The warnings
+	being excluded are: 1595, 0067, 0109, 0169, and	0649
+
 2002-05-01  Daniel Morgan <[email protected]>
 
 	* System.Data.build: modified to exclude more 

+ 5 - 1
mcs/class/System.Data/System.Data.build

@@ -7,7 +7,11 @@
 
 	<target name="build">
 		<csc target="library" output="../lib/System.Data.dll" debug="${debug}">
-			<!--<arg value="/nowarn:1595"/>-->
+			<arg value="/nowarn:1595"/>
+			<arg value="/nowarn:0067"/>
+			<arg value="/nowarn:0109"/>
+			<arg value="/nowarn:0169"/>
+			<arg value="/nowarn:0649"/>
 			<arg value="/unsafe"/>
 			<sources>
 				<includes name="**/*.cs"/>