在 Visual Studio 2008 中发布整个解决方案
我知道如何通过右键单击项目名称并单击属性然后转到发布选项卡来在我的解决方案中发布单个应用程序。如何对整个解决方案执行此操作,以便只使用一个安装程序来安装所有这些解决方案?
I know how to publish a single application in my solution by right clicking the project name and clicking properties then going to publish tab. How do you do this for the entire solution so that you only have one installer for all of them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有项目参考吗?如果您发布的项目依赖于另一个项目,它也应该被自动编译。
如果你想制作更复杂的发布场景,我建议使用MSBuild或NAnt。
这里是 MSBuild 的简短教程。
Do you have project references? If your project which you publish depends on another project, it should be automatically compiled also.
If you want to make more complex publishing scenarios, I recommend to use MSBuild or NAnt.
Here is a short tutorial of MSBuild.