This extension is now unpublished from Marketplace. You can choose to uninstall it.
├── .azuredevops
│ ├── azure-pipeline.yml# pipeline yaml
├── scripts# utility scripts for develomnent lifecycle only
├── BuildTasks# Put your tasks here!
│ ├── Common# IS NOT an task here has your commons functions to all tasks!
│ │ ├── v2# Package Major version!
│ │ │ ├── Common.ts# 🧰 This is common func (must referenced in ./BuildTasks/tsconfig.v2.json)!
│ │ │ ├── tsconfig.json
│ │ │ ├── tests
│ │ │ ├── _suite.ts# 🧪 all your tests must stay here!
│ ├── MyTask# This is an TASK package!
│ │ ├── v2# Package Major version!
│ │ │ ├── MyTask.ts# 🔨 This is your task!
│ │ │ ├── icon.png# Task Icon must be and .png
│ │ │ ├── task.json# task manifest file
│ │ │ ├── tsconfig.json
│ │ │ ├── tests
│ │ │ ├── _suite.ts# 🧪 all your tests must stay here!
├── vss-extension.json# 📚 Extension manifest file
├── package.json
└── .gitignore
Workspaces
Este projeto contribui com multiplas Tasks localizadas na pasta ./BuildTasks/*.
Full instant publish local
npm run release
npm i
ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN=$VIVO_AZURE_DEVOPS_TOKEN npm run pub
npm i