You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/nbgv/Program.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,9 +89,9 @@ public static int Main(string[] args)
89
89
cloud=syntax.DefineCommand("cloud",refcommandText,"Communicates with the ambient cloud build to set the build number and/or other cloud build variables.");
90
90
syntax.DefineOption("p|project",refprojectPath,"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.");
91
91
syntax.DefineOption("v|version",refversion,"The string to use for the cloud build number. If not specified, the computed version will be used.");
92
-
syntax.DefineOption("c|ci-system",refcisystem,"Force activation for a particular CI system. If not specified, auto-detection will be used. Supported values are: "+string.Join(", ",CloudProviderNames));
92
+
syntax.DefineOption("s|ci-system",refcisystem,"Force activation for a particular CI system. If not specified, auto-detection will be used. Supported values are: "+string.Join(", ",CloudProviderNames));
93
93
syntax.DefineOption("a|all-vars",refcloudBuildAllVars,false,"Defines ALL version variables as cloud build variables, with a \"NBGV_\" prefix.");
94
-
syntax.DefineOption("g|common-vars",refcloudBuildCommonVars,false,"Defines a few common version variables as cloud build variables, with a \"Git\" prefix (e.g. GitBuildVersion, GitBuildVersionSimple, GitAssemblyInformationalVersion).");
94
+
syntax.DefineOption("c|common-vars",refcloudBuildCommonVars,false,"Defines a few common version variables as cloud build variables, with a \"Git\" prefix (e.g. GitBuildVersion, GitBuildVersionSimple, GitAssemblyInformationalVersion).");
95
95
syntax.DefineOptionList("d|define",refcloudVariables,"Additional cloud build variables to define. Each should be in the NAME=VALUE syntax.");
0 commit comments