diff options
author | Rob Mensching <rob@firegiant.com> | 2020-07-14 10:22:51 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-07-14 10:45:09 -0700 |
commit | 7052dbba84e0815e75b3d85b4ffe05e0260304ab (patch) | |
tree | 61de60e2542e4177ca604e915d96354226a51a43 /src | |
parent | 53f0919741771bbd41a13efc83fc78337ba86756 (diff) | |
download | wix-7052dbba84e0815e75b3d85b4ffe05e0260304ab.tar.gz wix-7052dbba84e0815e75b3d85b4ffe05e0260304ab.tar.bz2 wix-7052dbba84e0815e75b3d85b4ffe05e0260304ab.zip |
Fix debugger display to not break Core
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Symbols/WixSimpleReferenceSymbol.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Symbols/WixSimpleReferenceSymbol.cs b/src/WixToolset.Data/Symbols/WixSimpleReferenceSymbol.cs index 3070ba04..86e410ff 100644 --- a/src/WixToolset.Data/Symbols/WixSimpleReferenceSymbol.cs +++ b/src/WixToolset.Data/Symbols/WixSimpleReferenceSymbol.cs | |||
@@ -28,7 +28,7 @@ namespace WixToolset.Data.Symbols | |||
28 | PrimaryKeys, | 28 | PrimaryKeys, |
29 | } | 29 | } |
30 | 30 | ||
31 | [DebuggerDisplay("{SymbolicName,nq}")] | 31 | [DebuggerDisplay("Ref {SymbolicName,nq}")] |
32 | public class WixSimpleReferenceSymbol : IntermediateSymbol | 32 | public class WixSimpleReferenceSymbol : IntermediateSymbol |
33 | { | 33 | { |
34 | public WixSimpleReferenceSymbol() : base(SymbolDefinitions.WixSimpleReference, null, null) | 34 | public WixSimpleReferenceSymbol() : base(SymbolDefinitions.WixSimpleReference, null, null) |
@@ -57,6 +57,6 @@ namespace WixToolset.Data.Symbols | |||
57 | /// Gets the symbolic name. | 57 | /// Gets the symbolic name. |
58 | /// </summary> | 58 | /// </summary> |
59 | /// <value>Symbolic name.</value> | 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 | } | 61 | } |
62 | } \ No newline at end of file | 62 | } \ No newline at end of file |