Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use the new bundling feature in a project I recently converted from MVC 3 to MVC 4 beta. It requires a line of code in global.asax, BundleTable.Bundles.RegisterTemplateBundles();, which requires using System.Web.Optimization; at the top.

When I do this, I get the red squiggly lines that say, "Are you missing an assembly reference?" When I try and add reference, and click on the .NET tab in the dialog, sort from A-Z, I do not see System.Web.Optimization.

How do I add this ref to my project? Thanks.

share|improve this question
17  
Please accept an answer – mhu Aug 31 '12 at 14:19

5 Answers

The Microsoft.Web.Optimization package is now obsolete. With the final release of ASP.NET (MVC) 4 you should install the Microsoft ASP.NET Web Optimization Framework:

  • Install the package from nuget:

    Install-Package Microsoft.AspNet.Web.Optimization
    
  • Create and configure bundle(s) in App_Start\BundleConfig.cs:

    public class BundleConfig
    {
        public static void RegisterBundles(BundleCollection bundles) {
            bundles.Add(new ScriptBundle("~/Scripts/jquery").Include(
                "~/Scripts/Lib/jquery/jquery-{version}.js",
                "~/Scripts/Lib/jquery/jquery.*",
                "~/Scripts/Lib/jquery/jquery-ui-{version}.js")
            );
    
            bundles.Add(new ScriptBundle("~/Scripts/knockout").Include(
                 "~/Scripts/Lib/knockout/knockout-{version}.js",
                 "~/Scripts/Lib/knockout/knockout-deferred-updates.js")
            );
        }
    }
    
  • Call the RegisterBundles() function from Application_Start() in your global.asax.cs:

    using System.Web.Optimization;
    
    protected void Application_Start() {
         ...
         BundleConfig.RegisterBundles(BundleTable.Bundles);
         ...
    }
    
  • In your view.cshtml include the Optimization namespace and render the bundle(s):

    @using System.Web.Optimization
    
    @Scripts.Render("~/Scripts/jquery")
    @Scripts.Render("~/Scripts/knockout")
    

See http://www.asp.net/mvc/tutorials/mvc-4/bundling-and-minification for more information

share|improve this answer
Do you need MVC4 to use this? – FloatLeft Jun 11 '12 at 15:03
@FloatLeft: No, its part of ASP.NET – mhu Jun 12 '12 at 9:08
1  
It's not out of date. This is how I use it with the final releases of Visual Studio 2012 and ASP.NET (MVC) 4. – mhu Sep 28 '12 at 6:55
5  
Your answer includes "using System.Web.Optimization;", which is exactly the thing that the questioner is asking about. – dave Nov 15 '12 at 22:37
1  
@dave: Is that good or bad? To solve the "missing assembly reference" Microsoft.AspNet.Web.Optimization should be installed as mentioned in the answer. – mhu Dec 19 '12 at 9:29
show 1 more comment

With the final released version of ASP.Net MVC 4 the approach is as follows:

  • Install Microsoft.AspNet.Web.Optimization via nuget (as it is not installed by the framework)

install-package Microsoft.AspNet.Web.Optimization

  • Create the bundle in Global.asax Application_Start:

     var scripts = new ScriptBundle("~/MyBundle");
    scripts.IncludeDirectory("~/Scripts/MyDirectory", "*.js");
    BundleTable.Bundles.Add(scripts);
    
  • Add the "System.Web.Optimization" namespace to the "Views" web.config:

    <pages pageBaseType="System.Web.Mvc.WebViewPage">
        <namespaces>
            <add namespace="System.Web.Optimization" />
        </namespaces>
    </pages>
  • In your view.cshtml add an include to the bundle created in the last step:
<!-- Mashed Scripts -->
@Scripts.Render("~/MyBundle")

In debug mode, all script files in your directory will render individually; in release mode they will be bundled and minified.

share|improve this answer
Correct, this version includes it. The other version does not. – nextgenneo Mar 26 '12 at 23:07
It will work in MVC3 ? – Sergejs Jan 24 at 9:25

You can install it from NuGet.

share|improve this answer
1  
Not the same dll – naspinski Feb 28 '12 at 4:55
2  
link is now a 404 :( – FooBar Mar 5 at 17:21

In my case it was a tfs issue, since tfs exclude binaries, so the Nugget PM find the nugget installed and don't update the library If you have similar issue :

  • Go to source control
  • Navigate to the ..\packages\Microsoft.Web.Optimization
  • Add lib folder (uncheck the exclude binary extensions)
  • Update your solution and add the dll reference from the path

NB : the package folder is in the same level of yousolution.sln file

share|improve this answer

Try download the latest version from this url: http://nuget.org/packages/System.Web.Optimization/

share|improve this answer
link is now dead – mhu Mar 18 at 15:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.