Changeset 8164
- Timestamp:
- 06/29/12 16:40:11 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/PluginDependenciesTest.cs
r7948 r8164 35 35 private static Dictionary<string, string> pluginNames; 36 36 private static Dictionary<string, Assembly> pluginFilesToPluginLookup = new Dictionary<string, Assembly>(); 37 //private static Dictionary<string, string> pluginToPluginFilesLookup = new Dictionary<string, string>();38 37 39 38 // Use ClassInitialize to run code before running the first test in the class … … 91 90 92 91 var referencedNonPluginAssemblies = pluginAssembly.GetReferencedAssemblies().Where(a => !IsPluginAssemblyName(a)); 93 bool found = (from referencedNonPluginAssembl iein referencedNonPluginAssemblies94 select referencedNonPluginAssembl ie.Name into assemblyName92 bool found = (from referencedNonPluginAssembly in referencedNonPluginAssemblies 93 select referencedNonPluginAssembly.Name into assemblyName 95 94 where pluginFilesToPluginLookup.ContainsKey(assemblyName) 96 95 select GetPluginFromAssembly(pluginFilesToPluginLookup[assemblyName]) into pluginType
Note: See TracChangeset
for help on using the changeset viewer.