У меня есть конвейер сборки, настроенный для проекта UWP.
Задача решения для сборки имеет следующий YAML
, в котором упоминаются ошибки
#Your build pipeline references an undefined variable named ‘Parameters.solution’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972
#Your build pipeline references an undefined variable named ‘Parameters.msbuildArgs’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972
#Your build pipeline references the ‘BuildConfiguration’ variable, which you’ve selected to be settable at queue time. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab, and then select the option to make it settable at queue time. See https://go.microsoft.com/fwlink/?linkid=865971
steps:
- task: VSBuild@1
displayName: 'Build solution **\*.sln'
inputs:
solution: '$(Parameters.solution)'
vsVersion: 15.0
msbuildArgs: '$(Parameters.msbuildArgs)'
platform: x86
configuration: '$(BuildConfiguration)'
Я хочу указать путь для публикации для задачи публикации артефакта
Однако, когда я выбираю elipse, выбираю путь для публикации.не вижу никакой папки с артефактами для выбора.
У меня проблема с получением ментальной модели того, что происходит на сервере сборки (размещенный агент).
Когда я смотрю наВывод консоли для каждой выполняемой задачи. Я вижу, что она создает папки с исходным кодом, например,
D:\a\1\s\jtUFlow\jtUFlow\jtUFlow.csproj
. Это помогло бы получить представление проводника размещенного агента с переменными, указывающими напапки.
Как указывает Ajaxer, я не могу просматривать папки в конвейере, потому что они еще не существуют.
Я могу видеть в выводе консоли код задачи решения Build, такой как
Creating directory "D:\a\1\a\AppxPackages\jtUFlow_1.0.0.0_Test\Add-AppDevPackage.resources".
Разумно ли предположить, что (Build.ArtifactStagingDirectory) \ AppxPackages \ сопоставляется с этим?