Reputation: 5486
I want to develop a simple Azure DevOps extension which displays some data in the table. My extension is based on extension sample.
Can I debug this extension outside Azure DevOps without the complete deployment process described here? As a complete newbie to Azure DevOps I cannot imagine my development cycle when I should deploy every single change. Or can be deployment automated somehow?
Upvotes: 11
Views: 4104
Reputation: 41595
You can use the Azure DevOps Extension Hot Reload and Debug.
Download and install the following tools:
In the above GitHub repo, you can find the full tutorial of how to debug the extension without deploying it. another tutorial also available here.
Upvotes: 15