Переглянути джерело

2003-10-17 Ben Maurer <[email protected]>

        * CompilationConfiguration.cs (Init): you have to inherit copying
        files from the bin folders too.

svn path=/trunk/mcs/; revision=19146
Ben Maurer 22 роки тому
батько
коміт
1f52bae550

+ 5 - 0
mcs/class/System.Web/System.Web.Configuration/ChangeLog

@@ -1,3 +1,8 @@
+2003-10-17 Ben Maurer  <[email protected]>
+
+	* CompilationConfiguration.cs (Init): you have to inherit copying
+	files from the bin folders too.
+
 2003-10-15  Gonzalo Paniagua Javier <[email protected]>
 
 	* CompilationConfiguration.cs: use the context passed in. If not, try

+ 1 - 0
mcs/class/System.Web/System.Web.Configuration/CompilationConfiguration.cs

@@ -111,6 +111,7 @@ namespace System.Web.Configuration
 			temp_directory = parent.temp_directory;
 			compilers = new CompilerCollection (parent.compilers);
 			ArrayList p = parent.assemblies;
+			assembliesInBin = parent.assembliesInBin;
 			ICollection coll = (p == null) ? (ICollection) new object [0] : p;
 			assemblies = new ArrayList (coll);
 		}