Blankman
Blankman

Reputation: 267020

where are the mvc 2 files saved to?

just installed asp.net mvc 2, where are the new .dll's?

Upvotes: 0

Views: 66

Answers (2)

Omar
Omar

Reputation: 40182

I believe it's in the Global Assembly Cache and C:\Program Files\Microsoft ASP.NET\ASP.NET MVC 2\Assemblies or the equivalent on your machine.

But may I ask why you need it?

If you're trying to reference it in a Visual Studio project, you can add a reference to it the normal way; right-click on project, then add reference, search under .NET tab.

If you need to place it in the bin of a deployed project, you can set the property Copy Local of the System.Web.Mvc reference under the Reference folder under the project. This way, everytime you build/publish the project/solution, System.Web.Mvc will also be placed in the bin folder.

Upvotes: 0

Nick Larsen
Nick Larsen

Reputation: 18877

Have you checked the Global Assembly Cache on your machine? (C:\WINDOWS\assembly or whatever your system root is)

Upvotes: 2

Related Questions