Changes between Version 9 and Version 10 of Documentation/DevelopmentCenter/IntegrateHeuristicLab
- Timestamp:
- 01/12/20 11:39:34 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/DevelopmentCenter/IntegrateHeuristicLab
v9 v10 14 14 static void Main(string[] args) { 15 15 string samplePath = @"..\..\User-defined-algorithm.hl"; 16 // load all assemblies, otherwise HEAL.Attic doesn't load types 17 var dllFiles = Directory.EnumerateFiles(Environment.CurrentDirectory, "*.dll"); 18 foreach (var dllFile in dllFiles) { 19 System.Reflection.Assembly.LoadFile(dllFile); 20 } 16 21 ContentManager.Initialize(new PersistenceContentManager()); 17 22 ContentManager.LoadAsync(samplePath, LoadingCompleted);