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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2006-11-22 02:20:28 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2006-11-22 02:20:28 +0300
commit9352ce2a9c313058369e0fe1c1770989eec55bf5 (patch)
treec5b7434fe8aadd7ec0fe1b7ff6d385736af77a4c
parentbcca015eee371b4f490b728b7372819de59eec36 (diff)
2006-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* WebServiceCompiler.cs: add the type to the cache after getting it from the compiled assembly. svn path=/branches/mono-1-2-1/mcs/; revision=68300
-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;
}