Changeset 18035 for branches/3026_IntegrationIntoSymSpace/HeuristicLab
- Timestamp:
- 07/27/21 17:27:45 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab/3.3/Program.cs
r17180 r18035 26 26 [STAThread] 27 27 static void Main(string[] args) { 28 HeuristicLab.PluginInfrastructure.Main.Run(args); 28 if ((args.Length >= 1) && (args[0] == "/start:JsonInterface")) { 29 HeuristicLab.PluginInfrastructure.Main.HeadlessRun(args); 30 } else { 31 HeuristicLab.PluginInfrastructure.Main.Run(args); 32 } 29 33 } 30 34 }
Note: See TracChangeset
for help on using the changeset viewer.