加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

xml – WiX未解决的参考错误

发布时间:2020-12-16 07:49:23 所属栏目:百科 来源:网络整理
导读:我正在使用Wix 3.0.5419.0版.我有两个.wxs文件,一个是片段,另一个是使用片段创建.msi文件. 这是使用片段的文件(DaisyFarmer.wxs): ?xml version='1.0' encoding='windows-1252'?Wix xmlns='http://schemas.microsoft.com/wix/2006/wi' xmlns:iis='http://sc
我正在使用Wix 3.0.5419.0版.我有两个.wxs文件,一个是片段,另一个是使用片段创建.msi文件.

这是使用片段的文件(DaisyFarmer.wxs):

<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'  
     xmlns:iis='http://schemas.microsoft.com/wix/IIsExtension'>
  <Product Name='Daisy Web Site 1.0' 
           Id='BB7FBBE4-0A25-4cc7-A39C-AC916B665220'
           UpgradeCode='8A5311DE-A125-418f-B0E1-5A30B9C667BD'
           Language='1033' Codepage='1252' Version='1.0.0' Manufacturer='the man'>

    <Package Id='5F341544-4F95-4e01-A2F8-EF74448C0D6D' Keywords='Installer'
      Description="desc" Manufacturer='the man' InstallerVersion='100' 
      Languages='1033' Compressed='yes' SummaryCodepage='1252' />

    <Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" />
    <Property Id='DiskPrompt' Value="the man" />

    <PropertyRef Id="NETFRAMEWORK35"/>
    <Condition Message='This setup requires the .NET Framework 3.5.'>
      <![CDATA[Installed OR (NETFRAMEWORK35)]]>
    </Condition>

    <Feature Id='DaisyFarmer' Title='DaisyFarmer' Level='1'>
      <ComponentRef Id='SchedulerComponent' />
    </Feature>

  </Product>
</Wix>

我引用的片段是(Scheduler.wxs):

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <Fragment>
    <DirectoryRef Id="TARGETDIR">
      <Directory Id="dir2787390E4B7313EB8005DE08108EFEA4" Name="scheduler">
        <Component Id="SchedulerComponent" 
                   Guid="{9254F7E1-DE41-4EE5-BC0F-BA668AF051CB}">
          <File Id="fil9A013D0BFB837BAC71FED09C59C5501B"
                KeyPath="yes"
                Source="SourceDirDTBookMonitor.exe" />
          <File Id="fil4F0D8D05F53E6AFBDB498E7C75C2D98F" 
                KeyPath="no" 
                Source="SourceDirDTBookMonitor.exe.config" />
          <File Id="filF02F4686267D027CB416E044E8C8C2FA" 
                KeyPath="no" 
                Source="SourceDirmonitor.bat" />
          <File Id="fil05B8FF38A3C85FE6C4A58CD6FDFCD2FB" 
                KeyPath="no" 
                Source="SourceDiroutput.txt" />
          <File Id="fil397F04E2527DCFDF7E8AC1DD92E48264" 
                KeyPath="no" 
                Source="SourceDirpipelineOutput.txt" />
          <File Id="fil83DFACFE7F661A9FF89AA17428474929" 
                KeyPath="no" 
                Source="SourceDirprocess.bat" />
          <File Id="fil2809039236E0072642C52C6A52AD6F2F" 
                KeyPath="no" 
                Source="SourceDirREADME.txt" />
        </Component>
      </Directory>
    </DirectoryRef>
  </Fragment>
</Wix>

然后我运行以下命令:

candle -ext WixUtilExtension -ext WiXNetFxExtension DaisyFarmer.wxs  Scheduler.wxs
light -sice:ICE20 -ext WixUtilExtension -ext WiXNetFxExtension Scheduler.wixobj DaisyFarmer.wixobj -out DaisyFarmer.msi

当我运行light.exe时,我收到一个错误

“DaisyFarmer.wxs(20) : error LGHT0094 : Unresolved reference to symbol ‘Component:SchedulerComponent’ in section ‘Product:{BB7FBBE4-0A25-4CC7-A39C-AC916B665220}’.”

我错过了什么?

我遇到此问题的原因是我没有在DaisyFarmer.wxs中指定TARGETDIR.如果我修改DaisyFarmer.wxs以便指定TARGETDIR,例如:
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'  
     xmlns:iis='http://schemas.microsoft.com/wix/IIsExtension'>
<Product Name='Daisy Web Site 1.0'
     Id='BB7FBBE4-0A25-4cc7-A39C-AC916B665220' 
     UpgradeCode='8A5311DE-A125-418f-B0E1-5A30B9C667BD'
     Language='1033' Codepage='1252' Version='1.0.0' Manufacturer='the man'>

<Package Id='5F341544-4F95-4e01-A2F8-EF74448C0D6D' Keywords='Installer'
  Description="desc" Manufacturer='the man' InstallerVersion='100'
  Languages='1033' Compressed='yes' SummaryCodepage='1252' />

<Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" />
<Property Id='DiskPrompt' Value="the man" />

<PropertyRef Id="NETFRAMEWORK35"/>
<Condition Message='This setup requires the .NET Framework 3.5.'>
  <![CDATA[Installed OR (NETFRAMEWORK35)]]>
</Condition>

<Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="INSTALLDIR" Name="scheduler">
  </Directory>
</Directory>

<Feature Id='DaisyFarmer' Title='DaisyFarmer' Level='1'>
  <ComponentRef Id='SchedulerComponent' />
</Feature>

一切正常.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读