diff options
author | Rob Mensching <rob@firegiant.com> | 2019-10-07 07:32:59 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-10-07 11:27:21 -0700 |
commit | cece10e037c6daacc8d2def1a9057882aec47fe4 (patch) | |
tree | 8e79c0d5b30ed8e663c077b2d9ce2b829b76ab84 /src/WixToolset.Data/Burn | |
parent | 7462108b714d07161126dcedda5312daef54ae13 (diff) | |
download | wix-cece10e037c6daacc8d2def1a9057882aec47fe4.tar.gz wix-cece10e037c6daacc8d2def1a9057882aec47fe4.tar.bz2 wix-cece10e037c6daacc8d2def1a9057882aec47fe4.zip |
Add support for long fields and fix up Bundle and many other tuples
Diffstat (limited to 'src/WixToolset.Data/Burn')
-rw-r--r-- | src/WixToolset.Data/Burn/BurnConstants.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Burn/BurnConstants.cs b/src/WixToolset.Data/Burn/BurnConstants.cs new file mode 100644 index 00000000..9803a73a --- /dev/null +++ b/src/WixToolset.Data/Burn/BurnConstants.cs | |||
@@ -0,0 +1,19 @@ | |||
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 BundleLayoutOnlyPayloadsName = "BundleLayoutOnlyPayloads"; | ||
10 | |||
11 | public const string BootstrapperApplicationDataTupleDefinitionTag = "WixBootstrapperApplicationData"; | ||
12 | |||
13 | // The following constants must stay in sync with src\burn\engine\core.h | ||
14 | public const string BURN_BUNDLE_NAME = "WixBundleName"; | ||
15 | public const string BURN_BUNDLE_ORIGINAL_SOURCE = "WixBundleOriginalSource"; | ||
16 | public const string BURN_BUNDLE_ORIGINAL_SOURCE_FOLDER = "WixBundleOriginalSourceFolder"; | ||
17 | public const string BURN_BUNDLE_LAST_USED_SOURCE = "WixBundleLastUsedSource"; | ||
18 | } | ||
19 | } | ||