2012-11-15 109 views
5

好吧,我明顯錯過了一些東西。我試圖按照this的要求安裝到GAC併爲開發提供支持。但是,唯一發生的事情是該DLL被放入ProductDirectory中。它沒有出現在GAC中,也沒有添加註冊表項。我怎樣才能使這個工作?安裝到GAC並在註冊表中註冊

下面的Product.wxs的相關部分。

<?xml version="1.0" encoding="UTF-8"?> 
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 
    <Product Id="*" Name="Me.Common" Language="1033" Version="1.0.0.0" Manufacturer="Me" UpgradeCode="ea52947a-0980-435d-a8f5-280d3526cb90"> 
     <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> 
    <!-- The feature to install. --> 
     <Feature Id="ProductFeature" Title="Me.Common" Level="1"> 
      <ComponentGroupRef Id="ProductComponents" /> 
     </Feature> 
    </Product> 

    <Fragment> 
     <Directory Id="TARGETDIR" Name="SourceDir"> 
      <Directory Id="ProgramFilesFolder"> 
     <Directory Id="ProductDirectory" Name="Me.Common"> 
      <Directory Id="GAC" Name="GAC" /> 
     </Directory> 
      </Directory> 
     </Directory> 
    </Fragment> 

    <Fragment> 
     <ComponentGroup Id="ProductComponents"> 
     <Component Id="RunTime_Me.Common" Directory="GAC" Guid="E2B19C22-DC01-432D-85B0-0E4948F95A43"> 
     <!-- Add to GAC. --> 
     <File Id="RunTime_Me.Common" 
       Source="$(var.Me.Common.TargetDir)$(var.Me.Common.TargetFileName)" 
       Assembly=".net" 
       KeyPath="yes" /> 
     </Component> 
     <Component Id="DesignTime_Me.Common" Directory="ProductDirectory" Guid="C1BD8CD1-E834-49D5-B499-D9E313E70669"> 
     <!-- Add locally. --> 
     <File Id="DesignTime_Me.Common" 
       Source="$(var.Me.Common.TargetDir)$(var.Me.Common.TargetFileName)" 
       KeyPath="yes" /> 
     <!-- Add to registry so that Visual Studio can find it via Add Reference. --> 
     <Registry Id="Registry_DesignTime_Me.Common_AssemblyFolders" 
        Root="HKLM" 
        Key="SOFTWARE\Microsoft\.NETFramework\AssemblyFolders\[ProductName]" 
        Value="[$DesignTime_Me.Common]" 
        Type="string" /> 
     </Component> 
     </ComponentGroup> 
    </Fragment> 
</Wix> 

原來它在GAC已經安裝。我看着錯誤的地方; .NET現在有4.0項的另一個GAC(C:\ Windows \ Microsoft.NET \ assembly)。這留下了註冊表項。我得到一個警告,Registry被棄用,因此,我替換爲低於成分,但仍然沒有工作:

<Component Id="DesignTime_Me.Common" Directory="ProductDirectory" Guid="C1BD8CD1-E834-49D5-B499-D9E313E70669"> 
    <!-- Add locally. --> 
    <File Id="DesignTime_Me.Common" 
      Source="$(var.Me.Common.TargetDir)$(var.Me.Common.TargetFileName)" 
      KeyPath="yes" /> 
    <!-- Add to registry so that Visual Studio can find it via Add Reference. 
     These require .NET v4.0 minimum. --> 
    <RegistryKey Root="HKLM" 
       Key="SOFTWARE\Microsoft\.NETFramework\v4.0.30319\AssemblyFoldersEx\[ProductName]"> 
     <RegistryValue Type="string" Value="[$DesignTime_Me.Common]" /> 
    </RegistryKey> 
    </Component> 
</ComponentGroup> 

回答

4

這一切都工作;我只是看錯了地方。

4.0 GAC位於C:\Windows\Microsoft.NET\assembly。 因爲安裝程序是32位的,所以註冊表項被放置在SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v4.0.30319\AssemblyFoldersEx\[ProductName]中。

1

由於文件被apeparing的至少一個,我猜你沒有運行升高。嘗試將InstallPrivileges =「elevated」添加到您的包元素。

<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" InstallPrivileges="elevated" /> 
+0

默認情況下,它是否獲得所有安裝程序的管理權限?讓我去測試一下顯式的InstallPrivileges。 – zimdanen

+0

編輯我的問題。事實證明,GAC已經在工作 - 正在尋找2.0-3.5 GAC而不是4.0 GAC。但是,註冊表項不起作用,並且使用'InstallPrivileges'不能解決它。 – zimdanen

+2

發表了我自己的回答,但是因爲這是完整的,所以給了你賞金,你讓我回頭看看它。 – zimdanen