Where can I find System.Web.Helpers, System.Web.WebPages, and System.Web.Razor?

c#, razor, razorgenerator, visual-studio-2010

Solution

You will find these assemblies in the Extensions group under Assemblies in Visual Studio 2010, 2012 & 2013 (Reference Manager)

Problem

I am following this article on RazorGenerator and it say's that I must add references to: - `System.Web.Helpers.dll` - `System.Web.WebPages.dll` - `System.Web.Razor.dll` The only one I can see when I do `Add Reference` is `System.Web.Razor`, but I don't know where the other ones are.

Original source

Related problems