diff options
Diffstat (limited to 'src/WixToolset.Core/Bind/ResolvedDirectory.cs')
-rw-r--r-- | src/WixToolset.Core/Bind/ResolvedDirectory.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/WixToolset.Core/Bind/ResolvedDirectory.cs b/src/WixToolset.Core/Bind/ResolvedDirectory.cs index fca706d8..9d07fc93 100644 --- a/src/WixToolset.Core/Bind/ResolvedDirectory.cs +++ b/src/WixToolset.Core/Bind/ResolvedDirectory.cs | |||
@@ -7,15 +7,6 @@ namespace WixToolset.Bind | |||
7 | /// </summary> | 7 | /// </summary> |
8 | public struct ResolvedDirectory | 8 | public struct ResolvedDirectory |
9 | { | 9 | { |
10 | /// <summary>The directory parent.</summary> | ||
11 | public string DirectoryParent; | ||
12 | |||
13 | /// <summary>The name of this directory.</summary> | ||
14 | public string Name; | ||
15 | |||
16 | /// <summary>The path of this directory.</summary> | ||
17 | public string Path; | ||
18 | |||
19 | /// <summary> | 10 | /// <summary> |
20 | /// Constructor for ResolvedDirectory. | 11 | /// Constructor for ResolvedDirectory. |
21 | /// </summary> | 12 | /// </summary> |
@@ -27,5 +18,14 @@ namespace WixToolset.Bind | |||
27 | this.Name = name; | 18 | this.Name = name; |
28 | this.Path = null; | 19 | this.Path = null; |
29 | } | 20 | } |
21 | |||
22 | /// <summary>The directory parent.</summary> | ||
23 | public string DirectoryParent { get; set; } | ||
24 | |||
25 | /// <summary>The name of this directory.</summary> | ||
26 | public string Name { get; set; } | ||
27 | |||
28 | /// <summary>The path of this directory.</summary> | ||
29 | public string Path { get; set; } | ||
30 | } | 30 | } |
31 | } | 31 | } |