Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/05/11 08:08:36 (13 years ago)
Author:
epitzer
Message:

Do not manually include mscorlib.dll in default assemblies as it is automatically included and would cause a duplicate (#1363)

File:
1 edited

Legend:

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

    r5173 r5216  
    260260
    261261    protected static List<Assembly> defaultAssemblies = new List<Assembly>() {
    262       typeof(System.Linq.Enumerable).Assembly,  // add reference to version 3.5 of System.dll
    263       typeof(System.Collections.Generic.List<>).Assembly,
     262      // mscorlib automatically included (would cause duplicate)
     263      typeof(System.ComponentModel.INotifyPropertyChanged).Assembly, // System.dll
     264      typeof(System.Linq.Enumerable).Assembly,  // System.Core.dll
     265      typeof(System.Data.Linq.DataContext).Assembly, // System.Data.Linq.dll
    264266      typeof(System.Text.StringBuilder).Assembly,
    265       typeof(System.Data.Linq.DataContext).Assembly,
    266       typeof(System.ComponentModel.INotifyPropertyChanged).Assembly,
    267267      typeof(HeuristicLab.Common.IDeepCloneable).Assembly,
    268268      typeof(HeuristicLab.Core.Item).Assembly,
Note: See TracChangeset for help on using the changeset viewer.