Skip to content

Commit

Permalink
Return intermediate even if compiler encounters error
Browse files Browse the repository at this point in the history
Fixes 7854
  • Loading branch information
robmen committed Nov 13, 2023
1 parent 4d3c19d commit b9e579a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wix/WixToolset.Core/Compiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public Intermediate Compile(ICompileContext context)

target.UpdateLevel(Data.IntermediateLevels.Compiled);

return this.Messaging.EncounteredError ? null : target;
return target;
}

/// <summary>
Expand Down

0 comments on commit b9e579a

Please sign in to comment.