diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-02 14:41:49 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-04-02 14:58:00 -0700 |
| commit | 4449fcc5b8d104817c67135229682c66c3d892ca (patch) | |
| tree | 327f617de2e296ddb4e62c50bf07ec8b5dcf0a3e /src/WixToolset.Core/CommandLine/BuildCommand.cs | |
| parent | 9cca339473d77c7036035f949239f5231c325968 (diff) | |
| download | wix-4449fcc5b8d104817c67135229682c66c3d892ca.tar.gz wix-4449fcc5b8d104817c67135229682c66c3d892ca.tar.bz2 wix-4449fcc5b8d104817c67135229682c66c3d892ca.zip | |
Enable codepages and languages to be set via .wxl files
Fixes wixtoolset/issues#5801
Diffstat (limited to 'src/WixToolset.Core/CommandLine/BuildCommand.cs')
| -rw-r--r-- | src/WixToolset.Core/CommandLine/BuildCommand.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CommandLine/BuildCommand.cs b/src/WixToolset.Core/CommandLine/BuildCommand.cs index 9efef830..59aa2f1f 100644 --- a/src/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/WixToolset.Core/CommandLine/BuildCommand.cs | |||
| @@ -338,7 +338,9 @@ namespace WixToolset.Core.CommandLine | |||
| 338 | var context = this.ServiceProvider.GetService<IBindContext>(); | 338 | var context = this.ServiceProvider.GetService<IBindContext>(); |
| 339 | //context.CabbingThreadCount = this.CabbingThreadCount; | 339 | //context.CabbingThreadCount = this.CabbingThreadCount; |
| 340 | context.CabCachePath = cabCachePath; | 340 | context.CabCachePath = cabCachePath; |
| 341 | context.Codepage = resolveResult.Codepage; | 341 | context.ResolvedCodepage = resolveResult.Codepage; |
| 342 | context.ResolvedSummaryInformationCodepage = resolveResult.SummaryInformationCodepage; | ||
| 343 | context.ResolvedLcid = resolveResult.PackageLcid; | ||
| 342 | context.DefaultCompressionLevel = this.DefaultCompressionLevel; | 344 | context.DefaultCompressionLevel = this.DefaultCompressionLevel; |
| 343 | context.DelayedFields = resolveResult.DelayedFields; | 345 | context.DelayedFields = resolveResult.DelayedFields; |
| 344 | context.ExpectedEmbeddedFiles = resolveResult.ExpectedEmbeddedFiles; | 346 | context.ExpectedEmbeddedFiles = resolveResult.ExpectedEmbeddedFiles; |
