我正在尝试制作wix安装程序。用于Web应用程序。
以下是我的wsx文件
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<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:\Temp\Publish\Web.config" />
<File Source="C:\Temp\Publish\NLog.config"/>
<File Source="C:\Temp\Publish\Global.asax"/>
</Component>
</ComponentGroup>
<ComponentGroup Id="ProductBinComponents" Directory="INSTALLBINFOLDER">
<Component Id="ProductBinComponent" Win64="yes" Guid="*">
<File Source="C:\Temp\Publish\bin\Antlr3.Runtime.dll"/>
<File Source="C:\Temp\Publish\bin\Antlr3.Runtime.pdb"/>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
但是每次我尝试构建它时,都会收到此消息
'。'(十六进制值0x00)是无效字符。
我真的不知道为什么,因为我可以用notepad ++编辑的所有文件似乎都有正确的结尾。因此,我什至找不到它抱怨的地方,更alone论尝试修复它。任何人都可以向我指出正确的方向或知道一个好的解决方法?
我知道Wix中也存在类似的错误,因为我可以看到有很多人在询问类似的问题,但是我发现的错误不适用于我的问题,或者我不是知道我可以在哪里修复它,因为它们在与我不同的Wix版本中的位置。
如果我在wsx文件中执行以下操作,则可以添加,它的构建就可以了。但这删除了我希望开始使用的用户界面。
<!--<UIRef Id="WixUI_Mondo" />
<UIRef Id="WixUI_ErrorProgressText" />-->