vsts中的msbuild的路径是什么

时间:2018-10-15 05:20:30

标签: build msbuild azure-devops azure-pipelines-build-task

asp.net Web表单项目需要迁移到vsts。该项目使用python脚本进行构建和发布。在代码中,它将调用msbuild.exe。但是,我很困惑如何在vsts中引用msbuild位置,以重新分配python文件中的先前位置。

1 个答案:

答案 0 :(得分:3)

您可以从托管代理Capabilities获取位置。

  1. 导航到 https://dev.azure.com/{organization}/_settings/agentpools
  2. 选择特定的池和代理(在您的方案中为Hosted VS2017
  3. 切换到Capabilities标签

例如,以下是托管VS2017代理中的MSBuild位置:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\ 

enter image description here