Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is System.Web.Optimization part of .Net Framework 4.5?

Tags:

I've been using Microsoft.Web.Optimization package for some time via the Visual Studio 2012 trial. I was thinking that the Optimization Namespace would be part of .NET 4.5 as stated here.

However, I installed the new release of Visual Studio 2012 & .NET Framework 4.5, and now there's no System.Web.Optimization namespace by default! I had to install the package through NuGet

Is the VS 2012 Ultimate release not yet complete? Or, is the Microsoft.Web.Optimization namespace not in .NET 4.5?

like image 972
Kamyar Nazeri Avatar asked Aug 30 '12 17:08

Kamyar Nazeri


People also ask

What is Net Framework 4.5 used for?

. NET framework is an integrated component of the Windows operating system that supports the development and execution of next-generation applications, Windows store apps, and services.

Is .NET 4.5 still supported?

NET Framework 4.5. 2, 4.6, and 4.6. 1 will reach end of support* on April 26, 2022. After this date, we will no longer provide updates including security fixes or technical support for these versions.

What is System web optimization?

The System. Web. Optimization namespace includes classes that support Content Delivery Networks (CDN) and the process of optimizing JavaScript and cascading style sheet (CSS) files in a website to reduce file size and improve page performance.


1 Answers

Microsoft is adopting a new strategy with VS2012 in which they are componentizing more of the new features as packages that can be downloaded via nuget. For example, Entity Framework, MVC4, WebApi, Web Optimization, etc.. are all now packages rather than part of the framework.

The reason is that these systems can now be easily upgraded out of cycle with the rest of the framework. Thus, MVC5 can be easily released without waiting for .NET 5, and Web Optimization v2 can be released whenever it might be ready.

like image 122
Erik Funkenbusch Avatar answered Oct 07 '22 17:10

Erik Funkenbusch