问题描述
我想开发一个简单的Azure DevOps扩展,该扩展在表中显示一些数据.我的扩展程序基于扩展示例.
I want to develop a simple Azure DevOps extension which displays some data in the table. My extension is based on extension sample.
我是否可以在没有描述此处?作为Azure DevOps的完整新手,我无法想象应该部署每个更改的开发周期.还是可以通过某种方式使部署自动化?
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?
推荐答案
您可以使用 Azure DevOps扩展热重载和调试.
下载并安装以下工具:
- Visual Studio代码
- Firefox(因为VS Code Debugger for Chrome扩展程序尚不支持iframe)
- Firefox VS Code扩展调试器
- tfx-cli npm软件包
- webpack npm软件包
- webpack-dev-server npm软件包
在上述GitHub存储库中,您可以找到有关如何在不部署扩展的情况下调试扩展的完整教程. 此处.
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.
这篇关于如何在不进行部署的情况下调试和开发Azure DevOps扩展?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!