Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mcs/class/System.Web/System.Web.Compilation/ChangeLog5
-rw-r--r--mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs1
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.Compilation/ChangeLog b/mcs/class/System.Web/System.Web.Compilation/ChangeLog
index a290bf69c9c..e81c4a095f7 100644
--- a/mcs/class/System.Web/System.Web.Compilation/ChangeLog
+++ b/mcs/class/System.Web/System.Web.Compilation/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * WebServiceCompiler.cs: add the type to the cache after getting it
+ from the compiled assembly.
+
2006-11-16 Marek Habersack <grendello@gmail.com>
* ForceCopyBuildProvider.cs: Added the build provider for
diff --git a/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs b/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs
index 702239fd4ef..5681b16e0e1 100644
--- a/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs
+++ b/mcs/class/System.Web/System.Web.Compilation/WebServiceCompiler.cs
@@ -124,6 +124,7 @@ namespace System.Web.Compilation
results.TempFiles.Delete ();
type = assembly.GetType (parser.ClassName, true);
+ CachingCompiler.InsertTypeFileDep (type, parser.PhysicalPath);
return type;
}