@@ -9,19 +9,19 @@ namespace CodeOfChaos.CliArgsParser.Library.CommandAtlases;
99// Code
1010// ---------------------------------------------------------------------------------------------------------------------
1111public class VersionBumpParameters : ICommandParameters {
12- [ ArgValue ( "root" ) ] [ Description ( "The root directory of the project to update" ) ]
12+ [ ArgValue ( "root" , "r" ) ] [ Description ( "The root directory of the project to update" ) ]
1313 public string Root { get ; set ; } = "../../../../../" ;
1414
15- [ ArgValue ( "section" ) ] [ Description ( "The section of the version to bump. One of: Major, Minor, Patch" ) ]
15+ [ ArgValue ( "section" , "s" ) ] [ Description ( "The section of the version to bump. One of: Major, Minor, Patch" ) ]
1616 public string ? SectionStringValue { get ; set ; }
1717
18- [ ArgValue ( "projects" ) ] [ Description ( "The projects to update" ) ]
18+ [ ArgValue ( "projects" , "p" ) ] [ Description ( "The projects to update" ) ]
1919 public string ? ProjectsStringValue { get ; set ; }
2020
21- [ ArgValue ( "project-split" ) ] [ Description ( "The split character to use when splitting the projects string" ) ]
21+ [ ArgValue ( "project-split" , "ps" ) ] [ Description ( "The split character to use when splitting the projects string" ) ]
2222 public string ProjectsSplit { get ; set ; } = ";" ;
2323
24- [ ArgValue ( "source-folder" ) ] [ Description ( "The folder where the projects are located" ) ]
24+ [ ArgValue ( "source-folder" , "sf" ) ] [ Description ( "The folder where the projects are located" ) ]
2525 public string SourceFolder { get ; set ; } = "src" ;
2626
2727 private string [ ] ? _projects ;
0 commit comments