Locate a WiX installer that uses a firewall extension

I have a WiX installation project that uses MSBuild to generate an MSI file. The WXS file includes the WiX firewall extension:

xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension"

I defined two cultures in the MSBuild file with the following definition:

<PropertyGroup>
    ...
   <Cultures>en-us;no-no</Cultures>
</PropertyGroup>

I also added translated resources:

<ItemGroup>
    <EmbeddedResource Include="lang\Firewall_no-no.wxl" />
    <EmbeddedResource Include="lang\WixUI_no-no.wxl" />
</ItemGroup>

They are a translation into Norwegian for extending the firewall and extending WixUI. When I run the assembly, it succeeds with the en-us part, but the no-no part fails with the following error messages:

C:\delivery\Dev\wix30_public\src\ext\FirewallExtension\wixlib\FirewallExtension.wxs(19):
error LGHT0102: The localization variable !(loc.WixSchedFirewallExceptionsInstall) 
is unknown.  Please ensure the variable is defined.
....

A couple of problems: I don’t know where the directory comes from C:\delivery. I do not have such a directory. The localization variables specified in the error message were translated to the Firewall_no-no.wxl file.

MSBuild , :

Task "Light"
  Command:
  C:\Program Files (x86)\Windows Installer XML v3\bin\Light.exe -cultures:no-no 
  -ext "C:\Program Files (x86)\Windows Installer XML v3\bin\WixUIExtension.dll" 
  -ext "C:\Program Files (x86)\Windows I nstaller XML v3\bin\WixUtilExtension.dll" 
  -ext "C:\Program Files (x86)\Windows Installer XML v3\bin\WixFirewallExtension.dll" 
  -loc lang\Firewall_no-no.wxl -loc lang\WixUI_no-no.wxl 
  -out F:\Projects\MyProd\MyProj\Installer\bin\Debug\no-no\MyInstaller.msi 
  -pdbout F:\Projects\MyProd\MyProj\Installer\bin\Debug\no-no\MyInstaller.wixpdb
  obj\Debug\MyProj.wixobj

, MSBuild -loc Light. , . , ?

+3
1

, . , Culture="no-no" WixLocalization. .

+2

Source: https://habr.com/ru/post/1742269/


All Articles