I'm trying to make a wix installer. for a web application.
the following is my wsx v3.11 File
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="Guid" Name="TestInstaller" Language="1033" Version="1.0.0.0" Manufacturer="CompanyName" UpgradeCode="Guid1">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="x64" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />
<PropertyRef Id="WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED"/>
<Condition Message='This setup requires the .NET Framework 4.7 client profile installed.'>
<![CDATA[Installed OR WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED]]>
</Condition>
<Feature Id="Complete" Title="TestInstaller" Description="TestInstaller" Level="1" ConfigurableDirectory='INSTALLFOLDER'>
<ComponentGroupRef Id="ProductComponents" />
<ComponentGroupRef Id="ProductBinComponents" />
</Feature>
<UIRef Id="WixUI_Mondo" />
<UIRef Id="WixUI_ErrorProgressText" />
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="INSTALLFOLDER" Name="Test Installer" >
<Directory Id="INSTALLBINFOLDER" Name="bin">
</Directory>
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component Id="ProductComponent" Win64="yes" Guid="*">
<File Source="C:TempPublishWeb.config" />
<File Source="C:TempPublishNLog.config"/>
<File Source="C:TempPublishGlobal.asax"/>
</Component>
</ComponentGroup>
<ComponentGroup Id="ProductBinComponents" Directory="INSTALLBINFOLDER">
<Component Id="ProductBinComponent" Win64="yes" Guid="*">
<File Source="C:TempPublishinAntlr3.Runtime.dll"/>
<File Source="C:TempPublishinAntlr3.Runtime.pdb"/>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
my problem here is that I don't know what this error message means and by extension have no clue how to fix it.
Either 'Microsoft.Tools.WindowsInstallerXml.AssemblyDefaultWixExtensionAttribute' was not defined in the assembly or the type defined in extension '..........Program Files (x86)WiX Toolset v3.11inWixUIExtension.dll' could not be loaded.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…