- Timestamp:
- 01/27/10 17:08:03 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManager.cs
r2688 r2690 127 127 // or there was a problem loading the assemblies 128 128 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); 131 131 } 132 132 return builder.ToString();
Note: See TracChangeset
for help on using the changeset viewer.