Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我的服务器当前使用 .net 4.0 设置,那么 4.5 是主要版本还是类似于 .net mvc 的地方,我只需要在我的 /bin 文件夹中包含与 mvc 相关的 dll 吗?
.NET 4.5 必须安装在服务器上。它不仅仅是一个要包含的 .dll。您必须在 web.config 中指定 4.5 才能使用 4.5 功能。您只需要包含您使用的使用 4.5 框架的软件包的 dll。我建议使用 NuGet 包管理器来处理此问题,这样您就不必手动执行此操作。
但是,在 IIS 中,4.5 不显示为应用程序池的 .NET 版本,而是使用 4.0 运行时。从这个意义上说,它类似于 3.5,您需要将应用程序池设置为 2.0 版本。