* 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
@@ -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
@@ -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"/>