diff options
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 fb258179..e11cd15a 100644 --- a/src/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/WixToolset.Core/CommandLine/BuildCommand.cs | |||
| @@ -186,7 +186,9 @@ namespace WixToolset.Core.CommandLine | |||
| 186 | 186 | ||
| 187 | private void BindPhase(Intermediate output) | 187 | private void BindPhase(Intermediate output) |
| 188 | { | 188 | { |
| 189 | var localizations = this.LoadLocalizationFiles().ToList(); | 189 | var localizations = new List<Localization>(output.Localizations); |
| 190 | |||
| 191 | localizations.AddRange(this.LoadLocalizationFiles()); | ||
| 190 | 192 | ||
| 191 | // If there was an error loading localization files, then bail. | 193 | // If there was an error loading localization files, then bail. |
| 192 | if (this.Messaging.EncounteredError) | 194 | if (this.Messaging.EncounteredError) |
