Many thanks for your reading my blog. When you think about CI/CD for the Angular Cli project I created for ASP.NET Core, you can separate them as two steps. The first step is to use NPM task from VSTS to call ng build to generate all JavaScript files to the wwwroot/dist folder. you might want to check out Deploying an Angular CLI project using VSTS Build and Release for how to use a NPM task to call ng build. The second step is to use general VS Project package task to package your asp.net core project and deploy to the host location. You might check out Deploy ASP NET Core from VSTS for how to deploy a ASP.NET Core application via VSTS. Let me know if those helps.