Is it possible to "bundle" multiple custom VSTS build tasks in one VSIX file.
I can see how it would be best practice (single responsibility and all) to create one extension per task, but is it possible?
If so, an example manifest, and a link to someone who has done this would be very appreciated.
My intended file structure is. It will be very easy to switch to one vsix per task if I have to.
Custom-Tasks
- Task1
- task.json
- task.ps1
- Task2
- task.json
- task.ps1
- Task3
- Task3V1
- task.json
- task.ps1
- Task3V2
- task.json
- task.ps1
extension-icon.png
extension-manifest.json
extension-tests.ps1
build-publish.ps1
Thanks!