diff options
author | Bob Arnson <bob@firegiant.com> | 2020-03-26 13:51:14 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-03-26 15:14:33 -0400 |
commit | 1adfdda935b814541693cd550bb34fdbf2942b1f (patch) | |
tree | 72b815664870bd37b9c049faa102348cc872fdd9 /src/WixToolset.Core/Librarian.cs | |
parent | 22c97adba70fa838b8f285d404750d0f8fe685d8 (diff) | |
download | wix-1adfdda935b814541693cd550bb34fdbf2942b1f.tar.gz wix-1adfdda935b814541693cd550bb34fdbf2942b1f.tar.bz2 wix-1adfdda935b814541693cd550bb34fdbf2942b1f.zip |
Add intermediate levels to track how IR has been lowered.
Diffstat (limited to 'src/WixToolset.Core/Librarian.cs')
-rw-r--r-- | src/WixToolset.Core/Librarian.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Librarian.cs b/src/WixToolset.Core/Librarian.cs index b6be73e9..d862c326 100644 --- a/src/WixToolset.Core/Librarian.cs +++ b/src/WixToolset.Core/Librarian.cs | |||
@@ -63,7 +63,9 @@ namespace WixToolset.Core | |||
63 | section.LibraryId = context.LibraryId; | 63 | section.LibraryId = context.LibraryId; |
64 | } | 64 | } |
65 | 65 | ||
66 | library = new Intermediate(context.LibraryId, sections, localizationsByCulture); | 66 | library = new Intermediate(context.LibraryId, IntermediateLevels.Compiled, sections, localizationsByCulture); |
67 | |||
68 | library.UpdateLevel(IntermediateLevels.Combined); | ||
67 | 69 | ||
68 | this.Validate(library); | 70 | this.Validate(library); |
69 | } | 71 | } |