安装程序在 VS.NET 2008 中安装其他项目
我有一个名为 DBSyncInstaller 的项目。它有一个安装程序类和多个单独的类。我还有另一个名为 MSSQLDBSync 的项目。我使用名为Setup3的安装和部署项目。此安装程序将使用DBSyncInstaller的安装程序类。然后它将部署MSSQLDBSYNC的exe(Project OutPut)。
请让我知道我应该执行哪些步骤。
问候,
萨钦 K
I have one project named DBSyncInstaller.It has one installer class and seperate classes along with it. I also have another project named MSSQLDBSync. I use SetUp and Deployment project called Setup3.This Setup will use installer class of DBSyncInstaller.Then it will deploy exe(Project OutPut) of MSSQLDBSYNC.
Please let me know what steps should I carry out.
Regards,
Sachin K
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将 MSSQLDBSync 添加为主安装程序的自定义先决条件。要创建先决条件清单,您可以使用引导程序清单生成器。生成它们后,您可以将所有这些文件(包括包)添加到 Visual Studio 先决条件文件夹中的单独文件夹中,例如:
这样您就可以在安装项目中选择先决条件:
You can try adding MSSQLDBSync a custom prerequisite to your main installer. To create the prerequisite manifests you can use the bootstrapper manifest generator. After generating them, you can add all these files (including the package) in a separate folder in the Visual Studio prerequisites folder, for example:
This way you will be able to select the prerequisite in your setup project: