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
This commit is contained in:
Markus Ewald 2008-01-07 18:16:34 +00:00
parent d59753b98d
commit fd76346296

View File

@ -46,7 +46,7 @@ namespace Nuclex.Support.Plugins {
this.employer = employer; this.employer = employer;
this.repository = repository; this.repository = repository;
foreach(Assembly assembly in this.repository.LoadedPlugins) foreach(Assembly assembly in this.repository.LoadedAssemblies)
employAssemblyTypes(assembly); employAssemblyTypes(assembly);
this.repository.AssemblyLoaded += new AssemblyLoadEventHandler(assemblyLoadHandler); this.repository.AssemblyLoaded += new AssemblyLoadEventHandler(assemblyLoadHandler);