From 2c15f33036489464f6ebd7cc1584e1975e765899 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 8 May 2019 13:41:41 -0700 Subject: Rename ComponentKeyPathType to PossibleKeyPathType --- .../Data/ComponentKeyPathType.cs | 37 ---------------------- .../Data/IComponentKeyPath.cs | 2 +- .../Data/PossibleKeyPathType.cs | 37 ++++++++++++++++++++++ 3 files changed, 38 insertions(+), 38 deletions(-) delete mode 100644 src/WixToolset.Extensibility/Data/ComponentKeyPathType.cs create mode 100644 src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs (limited to 'src/WixToolset.Extensibility/Data') diff --git a/src/WixToolset.Extensibility/Data/ComponentKeyPathType.cs b/src/WixToolset.Extensibility/Data/ComponentKeyPathType.cs deleted file mode 100644 index 58bbb0cf..00000000 --- a/src/WixToolset.Extensibility/Data/ComponentKeyPathType.cs +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. - -namespace WixToolset.Extensibility.Data -{ - public enum ComponentKeyPathType - { - /// - /// Not a key path. - /// - None, - - /// - /// File resource as a key path. - /// - File, - - /// - /// Folder as a key path. - /// - Directory, - - /// - /// ODBC data source as a key path. - /// - OdbcDataSource, - - /// - /// A simple registry key acting as a key path. - /// - Registry, - - /// - /// A registry key that contains a formatted property acting as a key path. - /// - RegistryFormatted - } -} diff --git a/src/WixToolset.Extensibility/Data/IComponentKeyPath.cs b/src/WixToolset.Extensibility/Data/IComponentKeyPath.cs index ba660b45..9417b836 100644 --- a/src/WixToolset.Extensibility/Data/IComponentKeyPath.cs +++ b/src/WixToolset.Extensibility/Data/IComponentKeyPath.cs @@ -8,6 +8,6 @@ namespace WixToolset.Extensibility.Data string Id { get; set; } - ComponentKeyPathType Type { get; set; } + PossibleKeyPathType Type { get; set; } } } diff --git a/src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs b/src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs new file mode 100644 index 00000000..75ccb1d1 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs @@ -0,0 +1,37 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolset.Extensibility.Data +{ + public enum PossibleKeyPathType + { + /// + /// Not a key path. + /// + None, + + /// + /// File resource as a key path. + /// + File, + + /// + /// Folder as a key path. + /// + Directory, + + /// + /// ODBC data source as a key path. + /// + OdbcDataSource, + + /// + /// A simple registry key acting as a key path. + /// + Registry, + + /// + /// A registry key that contains a formatted property acting as a key path. + /// + RegistryFormatted + } +} -- cgit v1.2.3-55-g6feb