Last change
on this file since 18242 was
17025,
checked in by dpiringe, 6 years ago
|
#2924:
- added base attribute CLIBaseAttribute for CLI attributes, which contains the property Description
- changed inheritance from Attribute to CLIBaseAttribute for types: CommandAttribute, OptionAttribute and ValueAttribute
- added comment in RunnerHost
|
File size:
275 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.CommandLineInterface.Core {
|
---|
4 | public class CLIBaseAttribute : Attribute {
|
---|
5 | /// <summary>
|
---|
6 | /// Description which will be shown in the help box.
|
---|
7 | /// </summary>
|
---|
8 | public string Description { get; set; } = "";
|
---|
9 | }
|
---|
10 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.