我有一个Visual Studio捆绑文件:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle
Name="Some Name"
Version="3.2.2"
Manufacturer="Some Company"
Copyright="Copyright: Some Company, Inc">
...
</Bundle>
</Wix>
构建exe详细信息菜单包含两个参数(文件描述和产品名称)后,这些参数具有相同的值。有一种方法只使用WIX功能使这些值不同吗?
答案 0 :(得分:4)
从Wix版本3.10.2开始,您无法为exe文件描述资源的ProductName
和FileDescription
字段设置不同的值。
查看WIX源代码,特别是可从here下载的WIX310-Debug.zip文件src \ tools \ wix \ Binder.cs,显示以下代码片段,用于设置exe文件的资源:
Microsoft.Deployment.Resources.VersionStringTable strings = version[1033];
strings["LegalCopyright"] = bundleInfo.Copyright;
strings["OriginalFilename"] = Path.GetFileName(outputPath);
strings["FileVersion"] = bundleInfo.Version; // string versions do not have to be four parts.
strings["ProductVersion"] = bundleInfo.Version; // string versions do not have to be four parts.
if (!String.IsNullOrEmpty(bundleInfo.Name))
{
strings["ProductName"] = bundleInfo.Name;
strings["FileDescription"] = bundleInfo.Name;
}
请注意,ProductName
和FileDescription
设置为相同的值。
如果这很重要,您可以通过WiX问题跟踪数据库申请新功能:https://github.com/wixtoolset/issues/issues。