Changeset 2678
- Timestamp:
- 01/25/10 10:33:51 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Programmable/3.2/ProgrammableOperator.cs
r2668 r2678 173 173 foreach (var a in AppDomain.CurrentDomain.GetAssemblies()) { 174 174 try { 175 string location = a.Location; 176 assemblies.Add(a, false); 175 if (File.Exists(a.Location)) { 176 assemblies.Add(a, false); 177 } 177 178 } catch (NotSupportedException) { 178 179 // NotSupportedException is thrown while accessing
Note: See TracChangeset
for help on using the changeset viewer.