Azure Pipelines VSCode Extension #262
ChristopherHX
started this conversation in
Show and tell
Replies: 1 comment 5 replies
-
What do you think about the fake debug adapter of the vscode extension? See the gif of the first post for a preview. It allows you to create multiple launch configs with different parameters and variables. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Azure Pipelines VSCode Extension
This is a minimal Azure Pipelines Extension, the first vscode Extension which can Validate and Expand Azure Pipeline YAML files locally without any REST service.
Features
Remote Template References
The
azure-pipelines.repositories
settings maps the external Repositories to local or remote folders.Syntax
[<owner>/]<repo>@<ref>=<uri>
per line.<uri>
can be formed likefile:///<folder>
(raw file paths are not supported (yet?)),vscode-vfs://github/<owner>/<repository>
andvscode-vfs://azurerepos/<owner>/<project>/<repository>
Validate Azure Pipeline
> Validate Azure Pipeline
This command tries to evaluate your current open Azure Pipeline including templates and notifies you about the result.
Once this extension has been activated by any command, you can validate your pipeline via a statusbar button with the same name on all yaml or azure-pipelines documents
Expand Azure Pipeline
> Expand Azure Pipeline
This command tries to evaluate your current open Azure Pipeline including templates and show the result in a new document, which you can save or validate via the official api.
Azure Pipelines Debug Adapter
Sample Debugging configuration
Pros
Cons
Further Discussions about how to improve this extension are welcome
Beta Was this translation helpful? Give feedback.
All reactions