Reputation: 3337
My azure devops build started failing without any code or build changes.
The following error is thrown in the VisualStudio Build step
Error : The value for PublishProfile is set to 'FileSystem', expected to find the file at '...\FileSystem.pubxml' but it could not be found.
Upvotes: 2
Views: 802
Reputation: 3337
Turns out this is a bug.
https://github.com/microsoft/azure-pipelines-image-generation/issues/1276
I was able to work around it for now by changing my build host image from windows-2019
to vs2017-win2016
So in my yaml
pool:
vmImage: 'vs2017-win2016' #instead of window-2019
Upvotes: 2