我最近将Wix升级到版本4.0。
更新命名空间后,Visual Studio(2015)将无法识别这些新命名空间。
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Product Id="*" Name="_any_name" Language="1033" Version="1.0.0.0" Manufacturer="Anyone" UpgradeCode="8c568038-54cf-43ff-aa2c-581f4dd0aea0" Codepage="1252">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />
<Feature Id="ProductFeature" Title="_any_title" Level="1">
<ComponentGroupRef Id="group_ProductComponents" />
</Feature>
<Property Id="pro_SetupExe" Value="INSTALLFOLDER" />
<CustomAction Id="ca_LaunchSetupExe" Property="pro_SetupExe" ExeCommand="/FORCE_HIDE_FIRST_RUN /UNATTENDED_INSTALL /AUTOACCEPT_ALL /FORCE_CLOSE_WHEN_DONE /ON_REBOOT_MESSAGE:”NO”" Execute="commit" />
<CustomAction Id="ca_SetSetupPath" Property="pro_SetupExe" Value="[INSTALLFOLDER]x64ATIDriver\setup.exe" />
<InstallExecuteSequence>
<Custom Action="ca_SetSetupPath" Before="ca_LaunchSetupExe" />
<Custom Action="ca_LaunchSetupExe" Before="InstallFinalize" />
</InstallExecuteSequence>
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="TempFolder">
<Directory Id="INSTALLFOLDER" />
</Directory>
</Directory>
</Fragment>
</Wix>
Wix元素的名称空间“http://wixtoolset.org/schemas/v4/wxs”不正确。请使Wix元素如下所示:Wix xmlns =“http://schemas.microsoft.com/wix/2006/wi”
我发现了这些:Migrate Wix Project to v4.0 instructions
但我不知道这意味着什么:
修复:明确地将File元素上的Id属性设置为Source属性中的Name属性或文件名。
所以目前我只是有一种“崩溃”的项目,无法建立。
我真的很感激一些帮助。
对待Muffex
答案 0 :(得分:4)
命名空间错误使得听起来好像WiX v3仍在构建项目。此外,迁移到您找到的v4页面是为WixCop工具自动化您在那里找到的所有内容。它位于WiX安装目录的bin目录中。