main
cs 20 lines 594 Bytes
Raw
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
4 {
5 /// <summary>
6 /// Constants used by decompiler.
7 /// </summary>
8 public static class DecompilerConstants
9 {
10 /// <summary>
11 ///
12 /// </summary>
13 public const char PrimaryKeyDelimiter = '/';
14
15 /// <summary>
16 ///
17 /// </summary>
18 public const string PrimaryKeyDelimiterString = "/";
19 }
20 }