指定 VC++ ClickOnce 先决条件的可再发行版本
我的 ClickOnce 应用程序使用需要 Visual C++ 2005 可再发行组件的第三方工具。 如果仅安装了 VC++ 2008 可再发行组件,则第三方工具将无法工作。 但是,在 Visual Studio 2008 中,ClickOnce 先决条件不允许为 VC++ 可再发行组件指定版本; 它将添加 VC++ 2008 先决条件,这在大多数情况下都是有意义的。 但是,在这种情况下,需要较早的版本。 ClickOnce 是必需的,因此合并模块是不可能的。 关于如何指定版本有什么想法吗?
My ClickOnce application uses a third party tool that requires the Visual C++ 2005 redistributable. The third party tool will not work if only the VC++ 2008 redistributable is installed. However, in Visual Studio 2008, the ClickOnce prerequisites do not allow a version to be specified for the VC++ redistributable; it will add a VC++ 2008 prerequisite, which makes sense most of the time. However, in this situation, an earlier version is required. ClickOnce is required, so merge modules are out of the question. Any ideas of how to specify the version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我刚刚安装了 Visual Studio 2005。这是一个原始引导程序:
C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\vcredist_x86\
\en\package.xml
\product.xml
\vcredist_x86.exe
I just installed Visual Studio 2005. Here is an original bootstrapper:
C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\vcredist_x86\
\en\package.xml
\product.xml
\vcredist_x86.exe
我相信您可以打开您的应用程序的清单文件并修改您的应用程序应链接的重新发布的版本。 清单中的列表应与 C:\Windows\WinSxS 目录中的列表相匹配。 有一个 CodeProject 页面,它很好地描述了如何使用不同的可再发行组件。
I believe you can open the manifest file for your app and modify the versions of the redists your app should be linking against. The listings in the manifest should match what you have in your C:\Windows\WinSxS dirs. There is a CodeProject page that gives a good description of using different redistributables.
如果您能找到一台安装了 VS 2005 的机器,那么解决方案应该不会太难。 您可以自定义项目“发布”选项卡上“先决条件”对话框中显示的内容。
_
x86_
2005 或类似名称。
标记更改为有意义的内容(Visual C++ 2005 运行时库 (x86) )) 以区别于现有的 2008 年软件包。现在,当您打开先决条件对话框时,您应该会看到 2005 包的新条目。 我没有完全测试这个解决方案,所以我可能错过了一些细节,但希望这能让您开始。
If you can find a machine with VS 2005 installed, the solution shouldn't be too hard. You have the ability to customize what appears in the Prerequisites dialog on the Publish tab of your project.
_
x86_
2005 or something similar.<String Name="DisplayName">
tag to something that makes sense (Visual C++ 2005 Runtime Libraries (x86)) to differentiate it from the existing 2008 package.Now, when you open the Prerequisites dialog you should see a new entry for the 2005 package. I didn't completely test this solution so I may have missed a few details but hopefully this gets you started.