I want to use a web deploy to publish my ASP.Net Web API project along with Angular app. Angular app build is running in pre-build action, I'm using CustommCollectFiles to include \dist folder in publish, but because it's not waiting for finishing it the dist folder content can be outdated. How to wait until pre-build action finish and only after that copy dist folder?
Asked
Active
Viewed 103 times
0
-
do you need to run the angular build in the web deploy pipeline? We just run the angular build via a command line task before the web deploy task kicks off. This effectively makes it in series. – Chris Bartlett May 01 '21 at 15:07