Azure DevOps 的 C:\agent\_work\a 中最后一个字母 "a"、"b" 或 "s" 是什么意思?谁知道最后一个字母代表什么?

What is the meaning of the last letter "a", "b", or "s" in Azure DevOps' C:\agent\_work\1\a? Anyone know what that last letter stands for?

Azure DevOps 目录结构中最后一个字母 "a"、"b" 或 "s" 的含义是什么:

C:\agent_work\a C:\agent_work\b C:\agent_work\s

有人知道最后一个字母代表什么吗?

加分项:“1”也代表什么?

查看 predefined variables:

\a 可能代表 "artifacts"

Build.ArtifactStagingDirectory - The local path on the agent where any artifacts are copied to before being pushed to their destination. For example: c:\agent_work\a

\b 可能代表 "binaries"

Build.BinariesDirectory - The local path on the agent you can use as an output folder for compiled binaries. For example: c:\agent_work\b.

\s 可能代表 "sources"

Build.Repository.LocalPath - The local path on the agent where your source code files are downloaded. For example: c:\agent_work\s. This variable is synonymous with Build.SourcesDirectory.

在托管构建代理上,“1”似乎是静态的,在自托管代理上,我注意到每个管道的这个数字都是唯一的。