Browse Source

2003-01-17 Sebastien Pouliot <[email protected]>

	* System.Security.build: Simplified and fixed some issues.

svn path=/trunk/mcs/; revision=10638
Sebastien Pouliot 23 years ago
parent
commit
381b6f1ebb

+ 4 - 0
mcs/class/System.Security/ChangeLog

@@ -1,3 +1,7 @@
+2003-01-17  Sebastien Pouliot  <[email protected]>
+
+	* System.Security.build: Simplified and fixed some issues.
+
 2002-11-28  Sebastien Pouliot  <[email protected]>
 
 	* System.Security.build: New. Nant build file for Windows.

+ 5 - 15
mcs/class/System.Security/System.Security.build

@@ -2,36 +2,26 @@
 
 <!-- NAnt build file for System.Security.dll -->
 
-<project name="System.Data" default="build">
+<project name="System.Security" default="build">
 	<property name="debug" value="false"/>
 
 	<target name="build">
 		<csc target="library" output="../lib/System.Security.dll" debug="${debug}">
-			<arg value="/nowarn:1595"/>
-			<arg value="/nowarn:0067"/>
-			<arg value="/nowarn:0109"/>
 			<arg value="/nowarn:0169"/>
-			<arg value="/nowarn:0679"/>
-			<arg value="/nowarn:0649"/>
-			<arg value="/unsafe"/>
 			<arg value="/noconfig"/>
-			<arg value="/r:System.Xml.dll"/>
+			<arg value="/r:..\lib\System.XML.dll"/>
 			<sources basedir=".">
 				<includes name="System.Security.Cryptography.Xml/*.cs"/>
 			</sources>
-			<references>
-				<includes name="../lib/corlib.dll"/>
-				<includes name="../lib/System.Xml.dll"/>
-			</references>
 		</csc>
-		<copy file="../lib/System.Security.dll" tofile="Test/System.Security.dll"/>
 	</target>
+
 	<target name="test" depends="build">
 		<nant basedir="Test" target="test"/>
 	</target>
+
 	<target name="clean">
 		<delete file="../lib/System.Security.dll" failonerror="false"/>
-		<delete file="Test/System.Security.dll" failonerror="false"/>
-
+		<nant basedir="Test" target="clean"/>
 	</target>
 </project>