Statistics
The Highest Post







Statistics
Count 20
Avg 21.00
Min 21
Max 21
Asp.Net Core Top questions

Details



Peter Agyekum What are the different ways for bundling and minification in ASP.NET Core? Ans: There are different ways for doing bundling and minification in ASP.NET Core. Gulp – was the default choice for ASP.NET Core till beta versions. Later it was removed due to performance and speed issue and replaced with BundlerMinifier. Read this post to find out the reasons of this decision. BundlerMinifier – is a Visual Studio extension and it’s default choice now. You should see bundleconfig.json file in your default template. Read this post to know more about bundling and minification in ASP.NET Core. ASP.NET Core Web Optimizer – ASP.NET Core middleware for bundling and minification of CSS and JavaScript files at runtime. Grunt – can also be used with ASP.NET Core. For more Read Overview of Tools for bundling and minification in ASP.NET Core.