将 MVC3 添加为 WebApp 安装程序项目中的先决条件
如何将 Asp.NET MVC3 添加为 Visual Studio 安装程序项目中的先决条件?
How do I add Asp.NET MVC3 as a Prerequisite in my Visual Studio Installer project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
顺便说明一下,您不需要在您使用的主机上安装 MVC 3。你只需要像我们在“旧”时代那样做即可。
查看 ScottGu 在 "在没有 ASP 的 Web 服务器上运行 ASP.NET MVC 3 应用程序已安装 .NET MVC 3”。
Just a side note, you don't need MVC 3 to be installed on the host that you use. You just need to do it like we did back in the "old" days.
Check out this blog post by ScottGu on "Running an ASP.NET MVC 3 app on a web server that doesn’t have ASP.NET MVC 3 installed".
您需要在安装步骤之前编写自定义步骤,在其中手动检查是否已安装所需的程序集。您还可以查看 MSDN 上的以下文章。
You will need to write a custom before install step where you would manually check if the required assemblies have been installed. You may also check the following article on MSDN.
实际上,我要添加另一个答案来直接解决这个问题。
您所要做的就是为项目中引用的以下程序集设置“Copy Local = True”:
安装项目将自动将它们添加为“项目依赖项”并安装程序运行时将它们放入“bin”文件夹中。
Actually, I'm gonna add another answer to address the question directly.
All you have to do is set
"Copy Local = True"
for the following referenced assemblies in your project:And the setup project will automatically add them as "project dependencies" and put them into the "bin" folder when the setup is run.