我已经使用SharpShell为 Windows Explorer shell 构建了一个 ContextMenuHandler 。该程序集是为 AnyCPU 构建的,即在 MSIL 中,因此可以作为 32 位和 64 位运行。
我打算仅在 64 位 Windows 上运行它,但是,Windows 64 上的 32 位应用程序仍然使用 32 位版本的 shell 来打开对话框等。
我已经在两种架构(32 和 64)上使用 regasm 工具手动注册了这个程序集,它在 64 位 Windows 资源管理器中运行良好。它也适用于 32 位应用程序中的文件打开和其他 shell 提供的对话框。这是预期的行为,太棒了!
我遇到的问题是编写安装脚本,我使用的是Wix 3.7,我不想使用 regasm。
64 位组件安装有:-
<Component Id="cmpMyAssembly64" Directory="INSTALL_TO_HERE"
Location="local" Win64="yes">
<File Id="filMyAssembly" KeyPath="yes" Source="mySource.dll"
Assembly=".net" AssemblyApplication="filMyAssembly"
ProcessorArchitecture="msil"/>
<Class Id="01201201-0000-0000-0000-012345670123" Description="My Handler"
Context="InprocServer32" ThreadingModel="both" ForeignServer="mscoree.dll">
<ProgId Id="A.ContextHandler" Description="Does something" />
</Class>
<RegistryKey Root="HKCR" Key="CLSID\{01201201-0000-0000-0000-012345670123}"
ForceCreateOnInstall="yes" ForceDeleteOnUninstall="yes">
<RegistryKey Key="Implemented Categories\{62C8FE65-4EBB-45e7-B440-6E39B2CDBF29}">
<RegistryValue Value="" Type="string" />
</RegistryKey>
<RegistryKey Key="InprocServer32">
<RegistryKey Key="1.0.0.0">
<RegistryValue Name="Class" Value="aNamespace.theClass" Type="string" />
<RegistryValue Name="Assembly" Value="!(bind.assemblyFullName.filMyAssembly)" Type="string" />
<RegistryValue Name="RuntimeVersion" Value="v4.0.30319" Type="string" />
<RegistryValue Name="CodeBase" Value="file:///[#filMyAssembly]" Type="string" />
</RegistryKey>
<RegistryValue Name="Class" Value="aNamespace.theClass" Type="string" />
<RegistryValue Name="Assembly" Value="!(bind.assemblyFullName.filMyAssembly)" Type="string" />
<RegistryValue Name="RuntimeVersion" Value="v4.0.30319" Type="string" />
<RegistryValue Name="CodeBase" Value="file:///[#filMyAssembly]" Type="string" />
</RegistryKey>
</RegistryKey>
<RegistryValue Root="HKCR" Key="Directory\Background\shellex\ContextMenuHandlers\MyHandler" Value="{guid}" Type="string" Action="write" />
<RegistryValue Root="HKCR" Key="Directory\shellex\ContextMenuHandlers\MyHandler" Value="{guid}" Type="string" Action="write" />
<RegistryValue Root="HKCR" Key="Drive\shellex\ContextMenuHandlers\MyHandler" Value="{guid}" Type="string" Action="write" />
</Component>
我遇到的问题是 32 位版本的注册。因为它使用相同的程序集,所以我不想安装相同的文件两次。我所做的只是创建另一个(32 位)组件并进行必要的注册表更改。
<Component Id="cmp32BitVersion" Directory="INSTALL_TO_32"
Location="local" Win64="no">
<Class ... just like 64bit
<RegistryKey ... just like 64bit
</Component>
现在,我假设 Win64 是/否是 Windows 安装程序决定要写入注册表的哪个部分的方式。对于 64 位组件,它将写入 HKCR...,对于 32 位组件,它将写入 HKLM\SOFTWARE\WOW6432Node\Classes。我遇到的问题是,因为两个组件都使用文件引用 [#filMyAssembly] 我得到 ICE69: Mismatched component reference, warnings。代码仍在构建,但我不希望收到警告,不注意警告的人应该会遇到麻烦。
无论如何,我的问题是:使用 Wix/Windows Installer 在 64 位和 32 位应用程序中为 COM 注册 MSIL 程序集的正确方法是什么?