diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-05-08 13:41:41 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-05-08 13:54:48 -0700 |
| commit | 2c15f33036489464f6ebd7cc1584e1975e765899 (patch) | |
| tree | dd7aa9afaf01c14893903f7ab37b7fc20e3aba50 /src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs | |
| parent | 93692d4306b0f6ab3f97aab1598785951ec7bc47 (diff) | |
| download | wix-2c15f33036489464f6ebd7cc1584e1975e765899.tar.gz wix-2c15f33036489464f6ebd7cc1584e1975e765899.tar.bz2 wix-2c15f33036489464f6ebd7cc1584e1975e765899.zip | |
Rename ComponentKeyPathType to PossibleKeyPathType
Diffstat (limited to 'src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Data/PossibleKeyPathType.cs | 37 |
1 files changed, 37 insertions, 0 deletions
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 @@ | |||
| 1 | // 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. | ||
| 2 | |||
| 3 | namespace WixToolset.Extensibility.Data | ||
| 4 | { | ||
| 5 | public enum PossibleKeyPathType | ||
| 6 | { | ||
| 7 | /// <summary> | ||
| 8 | /// Not a key path. | ||
| 9 | /// </summary> | ||
| 10 | None, | ||
| 11 | |||
| 12 | /// <summary> | ||
| 13 | /// File resource as a key path. | ||
| 14 | /// </summary> | ||
| 15 | File, | ||
| 16 | |||
| 17 | /// <summary> | ||
| 18 | /// Folder as a key path. | ||
| 19 | /// </summary> | ||
| 20 | Directory, | ||
| 21 | |||
| 22 | /// <summary> | ||
| 23 | /// ODBC data source as a key path. | ||
| 24 | /// </summary> | ||
| 25 | OdbcDataSource, | ||
| 26 | |||
| 27 | /// <summary> | ||
| 28 | /// A simple registry key acting as a key path. | ||
| 29 | /// </summary> | ||
| 30 | Registry, | ||
| 31 | |||
| 32 | /// <summary> | ||
| 33 | /// A registry key that contains a formatted property acting as a key path. | ||
| 34 | /// </summary> | ||
| 35 | RegistryFormatted | ||
| 36 | } | ||
| 37 | } | ||
