如何在 MSI 安装程序中设置路径?
我正在使用 VS2008 安装项目来构建我们的 msi 安装程序。我已将一些 dll 文件从默认位置(安装的根文件夹)移动到自定义 bin 目录。我想我需要在某个地方(注册表?)设置路径来告诉应用程序这些 dll 文件的新位置。如何做到这一点?谢谢,
I am using VS2008 setup project to build our msi installer. I have moved some dll files from the default location (root folder of the installation) to a custom bin directory. I think I need to set path in somewhere (registry?) to tell the application the new loation of those dll files. How to do this? thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在记事本中打开 .vdproj 文件并搜索您移动的 dll 文件即可。然后调整dll路径(通常称为SourcePath)。您不应该在注册表中编辑任何内容!仅编辑此文件。
Just open up the .vdproj file in notepad and search for the dll files you moved. Then adjust the dll path (usually called SourcePath). You should not edit anything in the Registry! Only edit this file.
如果这些是您项目中的引用,我将删除这些引用并使用“添加引用”对话框的“浏览”选项卡将它们添加回来。
If these are references in your project, I would remove the references and add them back using the Browse tab of the Add Reference dialog.