[wix-users] ProductLanguage property not included in transformation
Tobias S
tobias.s1979 at gmail.com
Thu Sep 24 02:33:07 PDT 2015
Just if you are not using the torch task in an After Target here is a
sample (based on assumption en-US is base language):
<Target Name="AfterBuild"> <ItemGroup> <Transforms
Condition="%(CultureGroup.Identity) != 'en-US'"
Include="$(TargetDir)en-US\%(CultureGroup.Identity)_$(Platform).mst">
<Culture>%(CultureGroup.Identity)</Culture>
<OutputFolder>$(TargetDir)%(CultureGroup.OutputFolder)</OutputFolder>
</Transforms> </ItemGroup> <Torch
ToolPath="$(WixToolPath)"
BaselineFile="$(TargetDir)en-US\$(TargetFileName)"
UpdateFile="%(Transforms.OutputFolder)$(TargetFileName)"
OutputFile="%(Transforms.Identity)" AdditionalOptions="-t
Language" /> </Target>
More information about the wix-users
mailing list