Details
Description
The linker rule do wrongly handling for the "cultures" property.
Instead of:
if (product.type.contains("msi")) { var cultures = ModUtils.moduleProperty(product, "cultures"); args.push("-cultures:" + (cultures ? cultures.join(";") : "null")); }
should be added "cultures.isEmpty" function:
if (product.type.contains("msi")) { var cultures = ModUtils.moduleProperty(product, "cultures"); args.push("-cultures:" + (cultures.isEmpty ? cultures.join(";") : "null")); }
then to the linker will be passed correctly: "-culture:null" value.