Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2678


Ignore:
Timestamp:
01/25/10 10:33:51 (15 years ago)
Author:
epitzer
Message:

Filter out generated assemblies during discovery (#842)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/3.2/ProgrammableOperator.cs

    r2668 r2678  
    173173      foreach (var a in AppDomain.CurrentDomain.GetAssemblies()) {
    174174        try {
    175           string location = a.Location;
    176           assemblies.Add(a, false);
     175          if (File.Exists(a.Location)) {
     176            assemblies.Add(a, false);
     177          }
    177178        } catch (NotSupportedException) {
    178179          // NotSupportedException is thrown while accessing
Note: See TracChangeset for help on using the changeset viewer.