tags:

views:

9898

answers:

8

Where do you get Microsoft.Web.Mvc.dll? I see it included in a lot of ASP.NET MVC open-source projects but it's not on my system after having installed ASP.NET MVC Beta and .NET 3.5 SP1.

In the ASP.NET MVC Beta source code from codeplex.com the Microsoft.Web.Mvc.dll is produced by the MvcFutures project. Is everyone compiling this module themselves?

EDIT: now that I know what it's called I see where Scott Gu mentions it in his release notes: ASP.NET MVC Futures Assembly

A: 

IIRC, it was already built and included.

leppie
I believe it was once included with ASP.NET 3.5 Extensions Preview 2 which is no longer available. You apparently have to get it separate from the ASP.NET MVC Beta install now.
Todd Smith
It was there in MVC Preview 4.
leppie
We removed it as of the Beta release, because it's not part of the final RTM. It's a collection of potential future features as well as a bit of a playground for experimentation.
Brad Wilson
+8  A: 

That's the MVC Futures project.

MVC 1.0 Futures:
http://aspnet.codeplex.com/releases/view/24471

MVC 2 Futures:
http://aspnet.codeplex.com/releases/view/41742

Brad Wilson
Is this also needed for, or compatible with, MVC 2, I wonder?
Funka
P.S., this page comes up first in Google for "Microsoft.Web.Mvc", hence my commenting here in a one-and-a-half year old answer...
Funka
I just added the link for MVC 2 Futures.
Brad Wilson
A: 

For ASP.NET MVC RC1 the new address is http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=22359

labilbe
+1  A: 

Sorry, it's not answer, just comment.

Where to get fresh assembly for ASP.NET MVC 1.0 release?

derigel
still looking!i'm really tired of having to go search for this ervery time. codeplex search is TERRIBLE
Simon_Weaver
http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471
Simon_Weaver
+4  A: 

Looks like this is the final 1.0 version !

ASP.NET MVC v1.0 Futures

application, 104K, uploaded Mar 12

Simon_Weaver
A: 

Tak a look at this blog. It highlights areas of the MVC Future

http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx

Rasmus
A: 

You have to download the Data Annotations Model Binder Sample at http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471 . Then compile and build the project.

Juliana Machado
+1  A: 

The above page has been moved to http://aspnet.codeplex.com/releases/view/24471. From there download the Data Annotations Model Binder Sample. Then compile it and build it.

H Sampat