From fd76346296a8d8157b9dcaa2485946b3c03be8b5 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Mon, 7 Jan 2008 18:16:34 +0000 Subject: [PATCH] Fixed issue in PluginHost introduced by the renaming of the 'LoadedPlugins' property to 'LoadedAssemblies'; fixed an XML comment which was crefing to the wrong class name git-svn-id: file:///srv/devel/repo-conversion/nusu@60 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/Plugins/PluginHost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/PluginHost.cs b/Source/Plugins/PluginHost.cs index d04f6d3..7a824f2 100644 --- a/Source/Plugins/PluginHost.cs +++ b/Source/Plugins/PluginHost.cs @@ -46,7 +46,7 @@ namespace Nuclex.Support.Plugins { this.employer = employer; this.repository = repository; - foreach(Assembly assembly in this.repository.LoadedPlugins) + foreach(Assembly assembly in this.repository.LoadedAssemblies) employAssemblyTypes(assembly); this.repository.AssemblyLoaded += new AssemblyLoadEventHandler(assemblyLoadHandler);