| 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 | /// Location where the localization was loaded. |
| 7 | /// </summary> |
| 8 | public enum LocalizationLocation |
| 9 | { |
| 10 | /// <summary> |
| 11 | /// Localization loaded from .wxl source file. |
| 12 | /// </summary> |
| 13 | Source, |
| 14 | |
| 15 | /// <summary> |
| 16 | /// Localization loaded from .wixlib library. |
| 17 | /// </summary> |
| 18 | Library, |
| 19 | |
| 20 | /// <summary> |
| 21 | /// Localization loaded from .wixlib library within .wixext WixExtension. |
| 22 | /// </summary> |
| 23 | Extension, |
| 24 | |
| 25 | /// <summary> |
| 26 | /// Localization placed in .wixext WixExtension as the default culture localization for the |
| 27 | /// WixExtension. |
| 28 | /// </summary> |
| 29 | ExtensionDefaultCulture |
| 30 | } |
| 31 | } |