Rahul
Rahul
configuration: ``` services.AddWebOptimizer(pipeline => { pipeline.MinifyCssFiles();; pipeline.MinifyJsFiles();; pipeline.AddCssBundle("/css/style.css", "**/*.css"); pipeline.AddJavaScriptBundle("/js/script.js", "**/*.js"); }); ``` And I can see the code comments on the files are still exist: ``` /*! * Bootstrap...
After upgrading Microsoft Asp.net Core Nuget packages from 8.0.1 to 8.0.3, E.g (Microsoft.AspNetCore.Components.WebAssembly.Server) the Asp.Net core project fails to start due to the below exception: **Exception:** Could not load type...
Currently, the logs are batched and sent to the remote endpoint. It would be better if an option was provided to send the logs immediately. This will be really helpful...