问题描述
我正在尝试通过子类化 CompilerExtension 来为 Wix 编写扩展,但我找不到引用 Microsoft.Tools.WindowsInstallerXml 命名空间的 dll.我在网上搜索没有运气.
I am trying to write an extension for Wix by subclassing CompilerExtension but I can't locate the dll to reference the Microsoft.Tools.WindowsInstallerXml namespace. I searched on the web with no luck.
有什么想法可以找到吗?
Any ideas where this can be found?
标记
推荐答案
Microsoft.Tools.WindowsInstallerXml.CompilerExtension
类型在程序集 wix.dll
中(有没有名为 Microsoft.Tools.WindowsInstallerXml.dll
的程序集/DLL.程序集位于 \bin
(例如 C:\Program Files (x86)\WiX Toolset v3.6\bin\wix.dll
).
The type Microsoft.Tools.WindowsInstallerXml.CompilerExtension
is in the assembly wix.dll
(there is no assembly/DLL named Microsoft.Tools.WindowsInstallerXml.dll
). The assembly is located in <wixinstalldir>\bin
(e.g. C:\Program Files (x86)\WiX Toolset v3.6\bin\wix.dll
).
您可能还想查看 Codeplex 的 WixContrib 项目.
You might also want to have a look at the WixContrib project at Codeplex.
这篇关于在哪里可以找到 Microsoft.Tools.WindowsInstallerXml.dll?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!