From c353490b2f27ca88aa5029361b6f0c3767d909c9 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sat, 30 Jun 2018 17:02:02 -0700 Subject: [PATCH] Switch parameter name acronyms --- src/nbgv/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nbgv/Program.cs b/src/nbgv/Program.cs index 7ef5a2d1..67b37b80 100644 --- a/src/nbgv/Program.cs +++ b/src/nbgv/Program.cs @@ -89,9 +89,9 @@ public static int Main(string[] args) cloud = syntax.DefineCommand("cloud", ref commandText, "Communicates with the ambient cloud build to set the build number and/or other cloud build variables."); syntax.DefineOption("p|project", ref projectPath, "The path to the project or project directory used to calculate the version. The default is the current directory. Ignored if the -v option is specified."); syntax.DefineOption("v|version", ref version, "The string to use for the cloud build number. If not specified, the computed version will be used."); - syntax.DefineOption("c|ci-system", ref cisystem, "Force activation for a particular CI system. If not specified, auto-detection will be used. Supported values are: " + string.Join(", ", CloudProviderNames)); + syntax.DefineOption("s|ci-system", ref cisystem, "Force activation for a particular CI system. If not specified, auto-detection will be used. Supported values are: " + string.Join(", ", CloudProviderNames)); syntax.DefineOption("a|all-vars", ref cloudBuildAllVars, false, "Defines ALL version variables as cloud build variables, with a \"NBGV_\" prefix."); - syntax.DefineOption("g|common-vars", ref cloudBuildCommonVars, false, "Defines a few common version variables as cloud build variables, with a \"Git\" prefix (e.g. GitBuildVersion, GitBuildVersionSimple, GitAssemblyInformationalVersion)."); + syntax.DefineOption("c|common-vars", ref cloudBuildCommonVars, false, "Defines a few common version variables as cloud build variables, with a \"Git\" prefix (e.g. GitBuildVersion, GitBuildVersionSimple, GitAssemblyInformationalVersion)."); syntax.DefineOptionList("d|define", ref cloudVariables, "Additional cloud build variables to define. Each should be in the NAME=VALUE syntax."); });