Forrest logo
back to the vso tool

vso:tldr:fc3cf

vso: Create an automated task which asks for a confirmation before execution.
$ vso create-task --name "${string}" --description "${string}" --command "${command}" --need-confirm
try on your machine

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.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the vso tool