2016-09-09 5 views
1

wix 부트 스트 래퍼 구성을 만들려고합니다.'Bundle : ...'섹션의 'WixBootstrapperApplication : WixNetFxExtension'기호에 대한 확인되지 않은 참조

내 Bundle.wxs :

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" 
    xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension" 
    xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> 
    <Bundle Name="..." Version="1.0.0.0" Manufacturer="..." UpgradeCode="..."> 
    <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense"> 
     <bal:WixStandardBootstrapperApplication LicenseFile="mtel-eula-free.rtf"/> 
    </BootstrapperApplicationRef> 
    <BootstrapperApplicationRef Id="WixNetFxExtension" /> 
    <BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost"> 
     <Payload 
     Name="BootstrapperCore.config" 
     SourceFile="$(var.TargetDir)\BootstrapperCore.config"/> 
     <Payload 
     SourceFile="$(var.TargetPath)"/> 
    </BootstrapperApplicationRef> 
    <Chain> 
     <PackageGroupRef Id="NetFx452Web"/> 
     <MsiPackage Id="MTESetup" SourceFile="$(var.MTESetup.TargetPath)"/> 
    </Chain> 
    </Bundle> 
</Wix> 

오류 : 이미 내 부트 스트 래퍼 프로젝트에 참조로 WixNetFxExtension을 추가 한

Unresolved reference to symbol 'WixBootstrapperApplication:WixNetFxExtension' in section 'Bundle:...' 

.

답변

1

제거 라인

<BootstrapperApplicationRef Id="WixNetFxExtension" /> 

WixNetFxExtension는 윅스 확장이 아닌 BootstrapperApplication의 이름입니다. 번들 당 BootstrapperApplication 또는 BootstrapperApplicationRef 중 하나만 사용할 수 있습니다.