aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/ComponentKeyPath.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-08 14:13:31 -0700
committerRob Mensching <rob@firegiant.com>2019-05-08 14:44:43 -0700
commit75fd55d5a71c492c6ea904768858c51aa97da29f (patch)
tree610047db1d5759a726ce88277bb2dfddcd01da45 /src/WixToolset.Core/ComponentKeyPath.cs
parentd1dbe29f3856d012acf5f96e8e66c43b74ab490d (diff)
downloadwix-75fd55d5a71c492c6ea904768858c51aa97da29f.tar.gz
wix-75fd55d5a71c492c6ea904768858c51aa97da29f.tar.bz2
wix-75fd55d5a71c492c6ea904768858c51aa97da29f.zip
Use new strongly typed tuples
Diffstat (limited to 'src/WixToolset.Core/ComponentKeyPath.cs')
-rw-r--r--src/WixToolset.Core/ComponentKeyPath.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WixToolset.Core/ComponentKeyPath.cs b/src/WixToolset.Core/ComponentKeyPath.cs
index f81465fd..8e9c5776 100644
--- a/src/WixToolset.Core/ComponentKeyPath.cs
+++ b/src/WixToolset.Core/ComponentKeyPath.cs
@@ -2,6 +2,7 @@
2 2
3namespace WixToolset.Core 3namespace WixToolset.Core
4{ 4{
5 using WixToolset.Data;
5 using WixToolset.Extensibility.Data; 6 using WixToolset.Extensibility.Data;
6 7
7 internal class ComponentKeyPath : IComponentKeyPath 8 internal class ComponentKeyPath : IComponentKeyPath
@@ -19,6 +20,6 @@ namespace WixToolset.Core
19 /// <summary> 20 /// <summary>
20 /// Type of resource to be the key path. 21 /// Type of resource to be the key path.
21 /// </summary> 22 /// </summary>
22 public ComponentKeyPathType Type { get; set; } 23 public PossibleKeyPathType Type { get; set; }
23 } 24 }
24} 25}