diff options
author | Peter Hull <peterhull90@gmail.com> | 2024-05-05 19:40:59 +0100 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-05-06 17:03:23 -0400 |
commit | 4f4862bc65f83189680c9d26abe46c4e9cf51aeb (patch) | |
tree | 3cc43c2cff229011f64dd0e5f445e4c6efd636f7 /src | |
parent | f9569df0316d0ee4b0564eb900154cdca50a75f0 (diff) | |
download | wix-4f4862bc65f83189680c9d26abe46c4e9cf51aeb.tar.gz wix-4f4862bc65f83189680c9d26abe46c4e9cf51aeb.tar.bz2 wix-4f4862bc65f83189680c9d26abe46c4e9cf51aeb.zip |
Pass sourceFile through to formatter
Diffstat (limited to '')
-rw-r--r-- | src/wix/WixToolset.Converters/WixConverter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wix/WixToolset.Converters/WixConverter.cs b/src/wix/WixToolset.Converters/WixConverter.cs index 8432722b..be51d6c7 100644 --- a/src/wix/WixToolset.Converters/WixConverter.cs +++ b/src/wix/WixToolset.Converters/WixConverter.cs | |||
@@ -443,7 +443,7 @@ namespace WixToolset.Converters | |||
443 | 443 | ||
444 | if (this.TryOpenSourceFile(ConvertOperation.Format, sourceFile)) | 444 | if (this.TryOpenSourceFile(ConvertOperation.Format, sourceFile)) |
445 | { | 445 | { |
446 | this.FormatDocument(this.State.XDocument); | 446 | this.FormatDocument(this.State.XDocument, sourceFile); |
447 | 447 | ||
448 | // Fix Messages if requested and necessary. | 448 | // Fix Messages if requested and necessary. |
449 | if (saveConvertedFile && 0 < this.ConversionMessages.Count) | 449 | if (saveConvertedFile && 0 < this.ConversionMessages.Count) |