Last change
on this file since 17877 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:
713 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Reflection;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.CommandLineInterface.Data {
|
---|
7 | /// <summary>
|
---|
8 | /// Stores metadata for options.
|
---|
9 | /// </summary>
|
---|
10 | internal class OptionData {
|
---|
11 | internal const string LongformPrefix = "--";
|
---|
12 | internal const string ShortcutPrefix = "-";
|
---|
13 | internal string Identifier { get; set; } = "";
|
---|
14 | internal string Shortcut { get; set; }
|
---|
15 | internal string Description { get; set; } = "";
|
---|
16 | internal string ValueDescription { get; set; }
|
---|
17 | internal bool Required { get; set; } = false;
|
---|
18 | internal bool Hidden { get; set; } = false;
|
---|
19 | internal PropertyInfo Property { get; set; }
|
---|
20 | }
|
---|
21 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.