Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/27/10 17:08:03 (15 years ago)
Author:
gkronber
Message:

Fixed caching and resolve event handler in plugin infrastructure to fix the bug that the SqlServerCompact assembly is not found when opening a db connection. #854 (System.Data.SqlServerCe assembly is not loaded correctly)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManager.cs

    r2688 r2690  
    127127            // or there was a problem loading the assemblies
    128128            builder.AppendLine("There was a problem while loading assemblies: ");
    129             foreach (AssemblyName assembly in desc.AssemblyNames) {
    130               builder.AppendLine(assembly.FullName);
     129            foreach (string assemblyLocation in desc.AssemblyLocations) {
     130              builder.AppendLine(assemblyLocation + ": " + AssemblyName.GetAssemblyName(assemblyLocation).FullName);
    131131            }
    132132            return builder.ToString();
Note: See TracChangeset for help on using the changeset viewer.