I want to run my application in debug mode without any bundling or minification. In ASP.NET MVC (Framework), I could use System.Web.Optimization.BundleTable.EnableOptimizations = false and the paths to the source files were output individually.
Is there anyway to achieve the same effect in .NET Core
Alternatively, the capability to trigger bundling on file save would help as well.