我们应该如何在VSTS中声明构建变量?
$(Build.SourcesDirectory)/SomeFolder
或
$(Build.SourcesDirectory)\SomeFolder
我们应该使用什么,正斜杠或反斜杠?
例如,$(Build.SourcesDirectory)
等于C:\agent\_work\1\
根据这个,我们应该这样使用:$(Build.SourcesDirectory)\SomeFolder
但我不确定。什么是正确的?
答案 0 :(得分:0)
您可以在VSTS中声明 $(Build.SourcesDirectory)/SomeFolder
和$(Build.SourcesDirectory)\SomeFolder
构建变量。它们是相同的,并会自动扩展为C:\agent\_work\1\SomeFolder
它与VSTS中的构建变量无关;它应该与文件系统更相关。例如,在Windows 10中键入C:\Users\patrick\Pictures\Screenshot
和& C:\Users\patrick\Pictures/Screenshot
。两者都可以进入截图文件夹。
有关VSTS中构建变量的更多详细信息,请参阅this official tutorial。