From 9d0fea2e7617e4ba4fc85fbe412c812d9bc65564 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 23 May 2019 22:34:11 -0700 Subject: Improve debuggability of tuples --- src/WixToolset.Data/IntermediateTuple.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/WixToolset.Data/IntermediateTuple.cs b/src/WixToolset.Data/IntermediateTuple.cs index e5df9ecb..09ff7692 100644 --- a/src/WixToolset.Data/IntermediateTuple.cs +++ b/src/WixToolset.Data/IntermediateTuple.cs @@ -1,10 +1,12 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace WixToolset.Data { using System; + using System.Diagnostics; using SimpleJson; + [DebuggerDisplay("{DebuggerDisplay,nq}")] public class IntermediateTuple { public IntermediateTuple(IntermediateTupleDefinition definition) : this(definition, null, null) @@ -29,6 +31,8 @@ namespace WixToolset.Data public IntermediateField this[int index] => this.Fields[index]; + private string DebuggerDisplay => $"{this.Definition?.Name} {this.Id?.Id}"; + internal static IntermediateTuple Deserialize(ITupleDefinitionCreator creator, Uri baseUri, JsonObject jsonObject) { var definitionName = jsonObject.GetValueOrDefault("type"); -- cgit v1.2.3-55-g6feb