Pārlūkot izejas kodu

2002-12-23 Nick Drochak <[email protected]>

	* System_test.build: Fix build.  Need to link with System.Xml.dll

svn path=/trunk/mcs/; revision=9837
Nick Drochak 23 gadi atpakaļ
vecāks
revīzija
eb692e0eda

+ 4 - 0
mcs/class/System/Test/ChangeLog

@@ -1,3 +1,7 @@
+2002-12-23  Nick Drochak  <[email protected]>
+
+	* System_test.build: Fix build.  Need to link with System.Xml.dll
+
 2002-12-20 Jonathan Pryor <[email protected]>
 
 	* makefile.gnu: Add System.Xml.dll to list of referenced assemblies

+ 4 - 2
mcs/class/System/Test/System_test.build

@@ -20,8 +20,9 @@
 				<includes name="NUnitCore_mono.dll"/>
 			</references>
 
-			<arg value="/r:.\System.dll"/>
+			<arg value="/r:..\..\lib\System.dll"/>
 			<arg value="/r:..\..\lib\corlib.dll"/>
+			<arg value="/r:..\..\lib\System.Xml.dll"/>
 			<arg value="/nowarn:1595"/>
 			<arg value="/nostdlib"/> 	<!-- don't reference mscorlib -->
 			<arg value="/noconfig"/>	<!-- don't reference ms assemblies -->
@@ -36,7 +37,8 @@
 			</references>
 
 			<arg value="/noconfig"/>
-			<arg value="/r:.\System.dll"/>
+			<arg value="/r:..\..\lib\System.dll"/>
+			<arg value="/r:..\..\lib\System.Xml.dll"/>
 		</csc>
 
 	</target>