| 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.Burn |
| 4 | { |
| 5 | public static class BurnConstants |
| 6 | { |
| 7 | public const string BurnUXContainerName = "WixUXContainer"; |
| 8 | public const string BurnDefaultAttachedContainerName = "WixAttachedContainer"; |
| 9 | public const string BundleChainPackageGroupId = "WixChain"; |
| 10 | public const string BundleDefaultBoundaryId = "WixDefaultBoundary"; |
| 11 | public const string BundleLayoutOnlyPayloadsName = "BundleLayoutOnlyPayloads"; |
| 12 | |
| 13 | public const string BurnManifestWixOutputStreamName = "wix-burndata.xml"; |
| 14 | public const string BootstrapperExtensionDataWixOutputStreamName = "wix-bextdata"; |
| 15 | public const string BootstrapperApplicationDataWixOutputStreamName = "wix-badata.xml"; |
| 16 | |
| 17 | public const string BootstrapperApplicationDataNamespace = "http://wixtoolset.org/schemas/v4/BootstrapperApplicationData"; |
| 18 | public const string BootstrapperExtensionDataNamespace = "http://wixtoolset.org/schemas/v4/BootstrapperExtensionData"; |
| 19 | |
| 20 | public const string BootstrapperApplicationDataSymbolDefinitionTag = "WixBootstrapperApplicationData"; |
| 21 | public const string BootstrapperExtensionSearchSymbolDefinitionTag = "WixBootstrapperExtensionSearch"; |
| 22 | } |
| 23 | } |