我正在尝试使用wix为mvc4应用程序创建一个安装程序。我发现了一个示例,该示例演示如何在this link处为mvc4应用程序创建安装程序。
但是当我尝试构建wix安装项目时,它会给出如下错误

Error   16  Unresolved reference to symbol 'WixComponentGroup:MyWebWebComponents'
in section 'Product:{D16E42B5-3C6F-4EE5-B2F4-727BF8B74A92}'.
C:\Users\Baris\Desktop\New folder\WIXInstallerDemo-master\DemoWebsite.Setup\Product.wxs 15
1   DemoWebsite.Setup

Error   17  Unresolved reference to symbol 'WixComponentGroup:DemoWebsiteIssConfiguration'
in section 'Product:{D16E42B5-3C6F-4EE5-B2F4-727BF8B74A92}'.
C:\Users\Baris\Desktop\New folder\WIXInstallerDemo-master\DemoWebsite.Setup\Product.wxs 16
1   DemoWebsite.Setup`

我试图添加wixuiextension作为引用,但它不起作用。
这是product.wxs。特征节点的子节点导致此错误
    <?xml version="1.0" encoding="UTF-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="{D16E42B5-3C6F-4EE5-B2F4-727BF8B74A92}" Name="Demo website setup" Language="1033" Version="1.0.0.0" Manufacturer="Me" UpgradeCode="9279b740-8419-45c4-9538-6a45f8e949c7">
    <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
    <Media Id="1" Cabinet="DemoWebsite.cab" EmbedCab="yes" />

    <Property Id="DB_USER" Value="sa"/>
    <Property Id="DB_PASSWORD" Value="sa"/>
    <Property Id="DB_SERVER" Value="LOCAL"/>
    <Property Id="DB_DATABASE" Value="DemoWebsite"/>

    <Feature Id="ProductFeature" Title="DemoWebsite.Setup" Level="1">
      <ComponentGroupRef Id="MyWebWebComponents" />
      <ComponentGroupRef Id="DemoWebsiteIssConfiguration" />
    </Feature>
    <!-- Specify UI -->
    <UIRef Id="MyUI" />
    <Property Id="WIXUI_INSTALLDIR" Value="INETPUB" />
  </Product>

  <Fragment>
    <!-- Will default to C:\ if that is the main disk-->
    <Directory Id="TARGETDIR" Name="SourceDir">
      <!-- Will reference to C:\inetpub-->
      <Directory Id="INETPUB" Name="Inetpub">
        <!-- Will reference to c:\Inetpub\Demowebsite-->
        <Directory Id="INSTALLFOLDER" Name="DemoWebsite">
        </Directory>
      </Directory>
    </Directory>
  </Fragment>
</Wix>

我做错什么了?我知道它非常具体,但我无法在网上找到任何解决方案。
我正在使用vs 2012-wix 4.0

最佳答案

错误消息说明一切:它需要一个包含组件(例如,包含文件或注册表项)的ComponentGroup-标记。如果您查看您在问题中链接的示例项目,<ComponentGroupRef Id="DemoWebsiteIssConfiguration" />-元素引用名为ComponentGroupDemoWebsiteIssConfiguration。您可以在文件DemoWebsite.Setup\IISConfiguration.wxs中找到它:

<ComponentGroup Id="DemoWebsiteIssConfiguration">
  <ComponentRef Id="InstallWebsite" />
  <ComponentRef Id="DemoWebsiteAppPool" />
</ComponentGroup>

它是一个包含两个组件的ComponentGroup,在本例中,它引用两个组件。这些组件在同一文件中的ComponentGroup-元素上方定义。
关于idComponentGroupRef的另一个MyWebComponents:引用的ComponentGroup是在构建期间动态创建的。您可以查看文件DemoWebsite.Setup\setup.build。此文件是用于生成安装程序的MSBuild-文件。它包含一个名为Harvest的目标,该目标调用wix toolset包中的另一个工具heatheat将解析一个目录并收集其中包含的所有文件,并将它们放在ComponentGroup中,您可以在源文件中引用它们。也就是说,您定义了对aComponentGroup的引用,然后可以动态创建该引用的内容。这样,您就不必费心在项目中添加或删除文件,因为heat将动态收集它们。
 <Target Name="Harvest">
    <!-- Harvest all content of published result -->
    <Exec
        Command='$(WixPath)heat dir $(Publish) -dr INSTALLFOLDER -ke -srd -cg MyWebWebComponents -var var.publishDir -gg -out $(WebSiteContentCode)'
        ContinueOnError="false"
        WorkingDirectory="." />
  </Target>

动态创建的ComponentGroup的名称由参数-cg定义。您可以使用参数heat调用-?,以获得可能参数的简短描述。

08-27 00:05