How to host Angular application with Kestrel
问题 I am trying to deploy an Angular 7 application with .NET Core using Kestrel using the FileProvider extension. I have created the angular app , i have ng build it and i copied the files inside dist .NET Porject. Startup public void Configure(IApplicationBuilder app, IHostingEnvironment env) { string jsFolderName = "myroot"; string prodRoot =Path.Combine(AppDomain.CurrentDomain.BaseDirectory,jsFolderName); string debugRoot =Path.Combine(Directory.GetCurrentDirectory(),jsFolderName); var isDev