@joebigelow / wix / commits / 7052dbba

Fix debugger display to not break Core

Rob Mensching committed Jul 14, 2020 at 10:22 UTC 7052dbba84e0815e75b3d85b4ffe05e0260304ab
1 file changed +2 -2
src/WixToolset.Data/Symbols/WixSimpleReferenceSymbol.cs
+2 -2
@@ -28,7 +28,7 @@ namespace WixToolset.Data.Symbols
28 PrimaryKeys,
29 }
30
31 - [DebuggerDisplay("{SymbolicName,nq}")]
31 + [DebuggerDisplay("Ref {SymbolicName,nq}")]
32 public class WixSimpleReferenceSymbol : IntermediateSymbol
33 {
34 public WixSimpleReferenceSymbol() : base(SymbolDefinitions.WixSimpleReference, null, null)
@@ -57,6 +57,6 @@ namespace WixToolset.Data.Symbols
57 /// Gets the symbolic name.
58 /// </summary>
59 /// <value>Symbolic name.</value>
60 - public string SymbolicName => String.Concat("Ref ", this.Table, ":", this.PrimaryKeys);
60 + public string SymbolicName => String.Concat(this.Table, ":", this.PrimaryKeys);
61 }
62 }
\ No newline at end of file