diff options
Diffstat (limited to 'src/WixToolset.Extensibility/DecompilerConstants.cs')
-rw-r--r-- | src/WixToolset.Extensibility/DecompilerConstants.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/DecompilerConstants.cs b/src/WixToolset.Extensibility/DecompilerConstants.cs new file mode 100644 index 00000000..58742182 --- /dev/null +++ b/src/WixToolset.Extensibility/DecompilerConstants.cs | |||
@@ -0,0 +1,15 @@ | |||
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 | ||
4 | { | ||
5 | using System; | ||
6 | |||
7 | /// <summary> | ||
8 | /// Constants used by decompiler. | ||
9 | /// </summary> | ||
10 | public class DecompilerConstants | ||
11 | { | ||
12 | public const char PrimaryKeyDelimiter = '/'; | ||
13 | public const string PrimaryKeyDelimiterString = "/"; | ||
14 | } | ||
15 | } | ||