我正在编译一个WiX安装程序并使用Heat来收集我的文件,但是我遇到了一个问题,我有一个目录,我正在收获包含1个C#COM dll的目录。我需要基本上对此进行谴责。我在我的wix项目文件中有以下内容来收集文件:
<HeatDirectory OutputFile="%(ProjectReference.Filename).wxs"
Directory="..\ExactaMobilePublish\"
DirectoryRefId="INSTALLFOLDER"
ComponentGroupName="%(ProjectReference.Filename)"
SuppressUniqueIds="true"
SuppressCom="false"
SuppressFragments="true"
SuppressRegistry="false"
SuppressRootDirectory="true"
AutoGenerateGuids="false"
GenerateGuidsNow="true"
ToolPath="$(WixToolPath)"
PreprocessorVariable="var.BasePath" />
我遇到的问题是,当它为我的C#COM dll生成必要的注册表信息时,它还为该文件夹中未暴露给COM的一堆其他dll生成注册表信息。
这有什么办法吗?我应该尝试将单个C#COM dll收集到一个单独的wxs文件中吗?
除了上面定义的目录之外,我确实尝试在单独的WiX文件中收集单个C#COM dll但是我收到了预期的错误:
Error 5 Duplicate symbol 'Component:ExactaDatabaseAccess.dll' found. This typically means that an Id is duplicated. Check to make sure all your identifiers of a given type (File, Component, Feature) are unique. C:\TFS\Covance\Dev\ExactaMobileCNA317\Installer\ExactaMobileInstaller\ExactaMobile.wxs 143 1 ExactaMobileInstaller
我可以通过使用xslt转换从上面的目录中排除这个文件,但这看起来有点矫枉过正。
答案 0 :(得分:0)
我最后通过按照我在上面编辑中的建议来解决这个问题。我使用HeatFile
收集了单个文件,并使用xslt转换从HeatDirectory
收获中排除了该文件。
我的项目文件中有以下内容:
<HeatDirectory OutputFile="%(ProjectReference.Filename).wxs"
Directory="..\ExactaMobilePublish\"
DirectoryRefId="INSTALLFOLDER"
Transforms="ExcludeExactaDatabaseAccess.xslt"
ComponentGroupName="%(ProjectReference.Filename)"
SuppressUniqueIds="true"
SuppressCom="true"
SuppressFragments="true"
SuppressRegistry="true"
SuppressRootDirectory="true"
AutoGenerateGuids="false"
GenerateGuidsNow="true"
ToolPath="$(WixToolPath)"
PreprocessorVariable="var.BasePath" />
<HeatFile OutputFile="ExactaDatabaseAccess.wxs"
File="..\ExactaMobilePublish\bin\ExactaDatabaseAccess.dll"
DirectoryRefId="MOBILEBIN"
ComponentGroupName="ExactaDatabaseAccess"
SuppressUniqueIds="true"
SuppressCom="false"
SuppressFragments="true"
SuppressRegistry="false"
SuppressRootDirectory="true"
AutoGenerateGuids="false"
GenerateGuidsNow="true"
ToolPath="$(WixToolPath)"
PreprocessorVariable="var.ExactaMobileBinBasePath" />
我使用了以下xslt转换:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi">
<!-- Copy all attributes and elements to the output. -->
<xsl:template match="@*|*">
<xsl:copy>
<xsl:apply-templates select="@*" />
<xsl:apply-templates select="*" />
</xsl:copy>
</xsl:template>
<xsl:output method="xml" indent="yes" />
<!-- Search directories for the components that will be removed. -->
<xsl:key name="dll-search" match="wix:Component[@Id = 'ExactaDatabaseAccess.dll']" use="descendant::wix:File/@Id"/>
<!-- Remove components. -->
<xsl:template match="wix:Component[@Id='ExactaDatabaseAccess.dll']" />
<!-- Remove componentsrefs referencing components in those directories. -->
<xsl:template match="wix:ComponentRef[key('dll-search', @Id)]" />
</xsl:stylesheet>