asp.net-mvc 从何处获取 Microsoft.Web.Mvc.dll
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/334408/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Where to get Microsoft.Web.Mvc.dll
提问by Todd Smith
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.
你从哪里得到 Microsoft.Web.Mvc.dll?我看到它包含在许多 ASP.NET MVC 开源项目中,但在安装 ASP.NET MVC Beta 和 .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?
在来自 codeplex.com 的 ASP.NET MVC Beta 源代码中,Microsoft.Web.Mvc.dll 由 MvcFutures 项目生成。每个人都自己编译这个模块吗?
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
编辑:现在我知道它叫什么了,我看到 Scott Gu 在他的发行说明中提到它的地方:ASP.NET MVC Futures Assembly
采纳答案by Brad Wilson
That's the MVC Futures project.
那就是 MVC Futures 项目。
MVC 1.0 Futures:
http://aspnet.codeplex.com/releases/view/24471
MVC 1.0 期货:http:
//aspnet.codeplex.com/releases/view/24471
MVC 2 Futures:
http://aspnet.codeplex.com/releases/view/41742
MVC 2 期货:http:
//aspnet.codeplex.com/releases/view/41742
MVC 3 Futures:
http://aspnet.codeplex.com/releases/view/58781
回答by Simon_Weaver
Looks like this is the final 1.0 version !
看起来这是最终的 1.0 版本!
application, 104K, uploaded Mar 12
应用程序,104K,3 月 12 日上传
回答by H Sampat
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.
以上页面已移至http://aspnet.codeplex.com/releases/view/24471。从那里下载数据注释模型绑定器示例。然后编译它并构建它。
回答by ADyson
For anyone who might still be looking for this many years later (to revive an old bit of source code, for example, as I was), there are now Nuget packages for the various versions of MVC Futures (which gives you access to the Microsoft.Web.Mvc namespace).
对于多年后可能仍在寻找这一点的任何人(例如,恢复旧的源代码,就像我一样),现在有适用于各种版本的 MVC Futures 的 Nuget 包(它使您可以访问 Microsoft .Web.Mvc 命名空间)。
They are imaginatively named, after the version of MVC they belong with:
它们的命名富有想象力,以它们所属的 MVC 版本命名:
Mvc2Futures
Mvc3Futures
Mvc4Futures
MVC2期货
MVC3期货
MVC4Futures
...apart from the MVC 5 one, which is called
...除了 MVC 5 一个,它被称为
- Microsoft.AspNet.Mvc.Futures
- Microsoft.AspNet.Mvc.Futures
回答by Rasmus
Tak a look at this blog. It highlights areas of the MVC Future
看看这个博客。它突出了 MVC 未来的领域
http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx
http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx
回答by Juliana Machado
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.
您必须在http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471下载数据注释模型绑定器示例。然后编译并构建项目。
回答by labilbe
For ASP.NET MVC RC1 the new address is http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=22359
对于 ASP.NET MVC RC1,新地址是 http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=22359
回答by leppie
IIRC, it was already built and included.
IIRC,它已经构建并包含在内。

