vso:tldr:fc3cf
The given command is used to create a new task in Visual Studio Online (VSO) via a command-line interface (CLI). Here is an explanation of each part of the command:
-
vso create-task
: This is the main command that instructs the CLI to create a new task in VSO. -
--name "${string}"
: This option is used to specify the name of the task being created. The placeholder${string}
indicates that a value needs to be provided. Replace${string}
with an actual string for the task name. -
--description "${string}"
: This option is used to set a description for the task. Use the placeholder${string}
to specify the desired description. -
--command "${command}"
: This option is used to supply a command or script that will be executed when the task is run. The placeholder${command}
indicates that you need to provide the command or script to be executed. -
--need-confirm
: This option determines whether confirmation is required before starting the task. If this option is present, it indicates that the task requires confirmation before execution.
Overall, the command creates a new task in VSO with a specific name, description, command/script, and confirmation requirement. Remember to replace the placeholder values (${string}
and ${command}
) with appropriate values when using the command.