diff options
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 |