aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/BindPath.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-07-26 23:06:40 -0400
committerBob Arnson <bob@firegiant.com>2020-07-26 23:13:18 -0400
commit581897da13bd8a20eea0c2079262caaa06cde676 (patch)
tree7af47231adcb2eef5458db3d965b3abadbb6ab04 /src/WixToolset.Core/BindPath.cs
parentb62a7a0beb7ceb7987de28ec768c7814cadb83b9 (diff)
downloadwix-581897da13bd8a20eea0c2079262caaa06cde676.tar.gz
wix-581897da13bd8a20eea0c2079262caaa06cde676.tar.bz2
wix-581897da13bd8a20eea0c2079262caaa06cde676.zip
Fix Control symbol dehydration to MSI output.
Diffstat (limited to 'src/WixToolset.Core/BindPath.cs')
-rw-r--r--src/WixToolset.Core/BindPath.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.Core/BindPath.cs b/src/WixToolset.Core/BindPath.cs
index 85aef97a..f70d5e36 100644
--- a/src/WixToolset.Core/BindPath.cs
+++ b/src/WixToolset.Core/BindPath.cs
@@ -2,11 +2,13 @@
2 2
3namespace WixToolset.Core 3namespace WixToolset.Core
4{ 4{
5 using System.Diagnostics;
5 using WixToolset.Extensibility.Data; 6 using WixToolset.Extensibility.Data;
6 7
7 /// <summary> 8 /// <summary>
8 /// Bind path representation. 9 /// Bind path representation.
9 /// </summary> 10 /// </summary>
11 [DebuggerDisplay("Name={Name,nq} Path={Path,nq}")]
10 internal class BindPath : IBindPath 12 internal class BindPath : IBindPath
11 { 13 {
12 public string Name { get; set; } 14 public string Name { get; set; }