| 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.Data |
| 4 | { |
| 5 | /// <summary> |
| 6 | /// Well-known identifier names from the wixstd.wixlib. |
| 7 | /// </summary> |
| 8 | public static class WixStandardLibraryIdentifiers |
| 9 | { |
| 10 | /// <summary> |
| 11 | /// WiX Standard references for packages. |
| 12 | /// </summary> |
| 13 | public static readonly string WixStandardPackageReferences = "WixStandardPackageReferences"; |
| 14 | |
| 15 | /// <summary> |
| 16 | /// WiX Standard references for modules. |
| 17 | /// </summary> |
| 18 | public static readonly string WixStandardModuleReferences = "WixStandardModuleReferences"; |
| 19 | |
| 20 | /// <summary> |
| 21 | /// Default feature name. |
| 22 | /// </summary> |
| 23 | public static readonly string DefaultFeatureName = "WixDefaultFeature"; |
| 24 | |
| 25 | /// <summary> |
| 26 | /// WiX Standard localization strings. |
| 27 | /// </summary> |
| 28 | public static readonly string WixStandardLocalizationStrings = "WixStandardLocalizationStrings"; |
| 29 | } |
| 30 | } |