From 4ebc31a7c0bfaa1901065fa588b487027a1268f9 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 31 Mar 2020 19:31:25 -0400 Subject: Minor tweaks to make debugging easier. --- src/WixToolset.Data/Tuples/WixSimpleReferenceTuple.cs | 2 ++ src/WixToolset.Data/WixOutput.cs | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/src/WixToolset.Data/Tuples/WixSimpleReferenceTuple.cs b/src/WixToolset.Data/Tuples/WixSimpleReferenceTuple.cs index 2964cfb2..abc53b3a 100644 --- a/src/WixToolset.Data/Tuples/WixSimpleReferenceTuple.cs +++ b/src/WixToolset.Data/Tuples/WixSimpleReferenceTuple.cs @@ -20,6 +20,7 @@ namespace WixToolset.Data namespace WixToolset.Data.Tuples { using System; + using System.Diagnostics; public enum WixSimpleReferenceTupleFields { @@ -27,6 +28,7 @@ namespace WixToolset.Data.Tuples PrimaryKeys, } + [DebuggerDisplay("{SymbolicName}")] public class WixSimpleReferenceTuple : IntermediateTuple { public WixSimpleReferenceTuple() : base(TupleDefinitions.WixSimpleReference, null, null) diff --git a/src/WixToolset.Data/WixOutput.cs b/src/WixToolset.Data/WixOutput.cs index 1810862a..a3326b0b 100644 --- a/src/WixToolset.Data/WixOutput.cs +++ b/src/WixToolset.Data/WixOutput.cs @@ -206,6 +206,11 @@ namespace WixToolset.Data { var entry = this.archive.GetEntry(name); + if (entry == null) + { + throw new ArgumentOutOfRangeException(nameof(name)); + } + return entry.Open(); } -- cgit v1.2.3-55-g6feb