Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab/3.3/Settings.cs @ 17869

Last change on this file since 17869 was 16985, checked in by dpiringe, 6 years ago

#2924:

  • added CLI Framework HeuristicLab.CommandLineInterface
  • added definition language test project HeuristicLab.DefinitionLanguage
  • added test project HeuristicLab.DynamicAssemblyTestApp, for PluginInfrastructure testing
  • changed project HeuristicLab to .NET Core and used it to create a CLI-Tool with the new CLI Framework
  • added Docker support to HeuristicLab
  • added IRunnerHost.cs ... forgot last commit
  • changed DockerRunnerHost and NativeRunnerHost to HeuristicLab-3.3.exe, was a little test project before
  • added new solution file HeuristicLab 3.3 No Views.sln, where all view projects are unloaded at start
File size: 282 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.PluginInfrastructure;
3
4namespace HeuristicLab {
5  static class Settings {
6    public static IRunnerHost Host { get; set; } = null;
7    public static IEnumerable<AssemblyInfo> assemblyInfos { get; set; } = null;
8  }
9}
Note: See TracBrowser for help on using the repository browser.