2

I am new to Azure Build Pipelines.

I've seen many posts and videos about how to create a simple pipeline using the Azure Devops UI (no YAML), with one Web Application project, but I have 2 applications, an asp.net Core Web Application (WebUI) and an asp.net Core Web API. For some reason, the artifact published from my build pipeline is only containing the WEBUI. I would expect that both projects be published as Artifacts.

Any suggestion on what I should do to have both artifacts as results from my build pipeline?

Thanks

CidaoPapito
  • 572
  • 1
  • 6
  • 21

1 Answers1

2

I actually found my issue. I had a checkbox in the Publish Task called "Publish Web projects".

Once I unchecked it, both my artifacts were created.

enter image description here

CidaoPapito
  • 572
  • 1
  • 6
  • 21
  • Hi CidaoPapito, Thanks for sharing your findings and posting it here, you could Accept it as an Answer, so it could help other community members who get the same issues, we appreciate your contribution to forum. – Edward Han-MSFT Mar 26 '21 at 07:29