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/PossibleKeyPathType.cs | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs (limited to 'src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs') 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