如何在 VSCode 中的单个任务中 运行 多个命令?
How to run multiple commands within a single task in VSCode?
我想为自定义构建系统进行自定义配置步骤。看起来像:
binary1 arg1 arg2 …
binary2 arg3 arg4 …
<internal vscode command from other extension>
我想将它绑定到一个快捷方式,任务机制看起来是一个合适的解决方案。但我不知道如何以正确的任务 json 格式表达我的意图。
怎么做?
也许有比使用任务更好的方法来解决我的问题。
VSCode 特征 Compound Tasks.
您将构建过程的步骤定义为单独的任务,然后从复合任务中引用它们。
我想为自定义构建系统进行自定义配置步骤。看起来像:
binary1 arg1 arg2 …
binary2 arg3 arg4 …
<internal vscode command from other extension>
我想将它绑定到一个快捷方式,任务机制看起来是一个合适的解决方案。但我不知道如何以正确的任务 json 格式表达我的意图。
怎么做?
也许有比使用任务更好的方法来解决我的问题。
VSCode 特征 Compound Tasks.
您将构建过程的步骤定义为单独的任务,然后从复合任务中引用它们。