Skip to content

Commit be8cc83

Browse files
committed
Update VersionBumpParameters.cs
1 parent e035eac commit be8cc83

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/CodeOfChaos.CliArgsParser.Library/CommandAtlases/VersionBumpParameters.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ namespace CodeOfChaos.CliArgsParser.Library.CommandAtlases;
99
// Code
1010
// ---------------------------------------------------------------------------------------------------------------------
1111
public 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

Comments
 (0)