Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.CommandLineInterface/Attributes/CLIBaseAttribute.cs @ 17025

Last change on this file since 17025 was 17025, checked in by dpiringe, 5 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 
1using System;
2
3namespace 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.