Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/02/19 20:17:59 (6 years ago)
Author:
gkronber
Message:

#2520: added two custom transformers (for Fonts and Bitmaps) and registered types that are available in .NET Framework but not in .NET Standard 2.0 and added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Tests/HeuristicLab.Persistence.Fossil/UseCases.cs

    r16471 r16482  
    2929using HEAL.Fossil;
    3030using HeuristicLab.Algorithms.GeneticAlgorithm;
     31using HeuristicLab.Analysis;
    3132using HeuristicLab.Common;
     33using HeuristicLab.Data;
    3234using HeuristicLab.Persistence.Core;
    3335using HeuristicLab.Persistence.Default.Xml;
     
    4345    public void CreateTempFile() {
    4446      tempFile = Path.GetTempFileName();
     47      // in HL this is not necessary because RegisterStorableTypes is called when the plugin is loaded
     48      HeuristicLabPersistencePlugin.RegisterStorableTypes();
    4549    }
    4650
     
    150154              }
    151155            } catch (Exception e) {
    152               Console.WriteLine(t.FullName);
     156              Console.WriteLine($"type {t.FullName} in {fileName} is not registered with a GUID in HEAL.Fossil");
    153157              ok = false;
    154158            }
Note: See TracChangeset for help on using the changeset viewer.