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
Description=$"The URI(s) of the NuGet package source(s) used to determine the latest stable version of the {PackageId} package. This setting overrides all of the sources specified in the NuGet.Config files.",
Description="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.",
Description="Defines a few common version variables as cloud build variables, with a \"Git\" prefix (e.g. GitBuildVersion, GitBuildVersionSimple, GitAssemblyInformationalVersion).",
Description="Do not emit the cloud build variable to set the build number. This is useful when you want to set other cloud build variables but not the build number.",
290
289
};
291
290
vardefine=newOption<string[]>("--define",["-d"])
292
291
{
293
292
Description="Additional cloud build variables to define. Each should be in the NAME=VALUE syntax.",
Description="The version to set for the current branch. If omitted, the next version is determined automatically by incrementing the current version.",
Description="Overrides the 'versionIncrement' setting set in version.json for determining the next version of the current branch.",
337
335
};
338
336
varformat=newOption<string>("--format",["-f"])
339
337
{
340
338
Description=$"The format to write information about the release. Allowed values are: {string.Join(", ",SupportedFormats)}. The default is {DefaultOutputFormat}.",
Description="A custom message to use for the commit that changes the version number. May include {0} for the version number. If not specified, the default is \"Set version to '{0}'\".",
345
343
};
344
+
varwhatIf=newOption<bool>("--what-if")
345
+
{
346
+
Description="Simulates the prepare-release operation and prints the new version that would be set, but does not actually make any changes.",
347
+
};
346
348
vartagArgument=newArgument<string>("tag")
347
349
{
348
350
Description="The prerelease tag to apply on the release branch (if any). If not specified, any existing prerelease tag will be removed. The preceding hyphen may be omitted.",
0 commit comments