diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-22 14:34:24 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-22 14:39:10 +1000 |
commit | e4f1a4310f09e3777d035f35f4b4ca69d69f5083 (patch) | |
tree | 844df1d2d8f7815ca3fca3752a704877ad62869f /src/wixext | |
parent | 75ec7925bb5276c21c1b948f2162c8afcd47e699 (diff) | |
download | wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.tar.gz wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.tar.bz2 wix-e4f1a4310f09e3777d035f35f4b4ca69d69f5083.zip |
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/BalBurnBackendExtension.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/wixext/BalBurnBackendExtension.cs b/src/wixext/BalBurnBackendExtension.cs index c81955be..b767d2c0 100644 --- a/src/wixext/BalBurnBackendExtension.cs +++ b/src/wixext/BalBurnBackendExtension.cs | |||
@@ -3,6 +3,7 @@ | |||
3 | namespace WixToolset.Bal | 3 | namespace WixToolset.Bal |
4 | { | 4 | { |
5 | using System; | 5 | using System; |
6 | using System.Collections.Generic; | ||
6 | using System.Linq; | 7 | using System.Linq; |
7 | using WixToolset.Bal.Tuples; | 8 | using WixToolset.Bal.Tuples; |
8 | using WixToolset.Data; | 9 | using WixToolset.Data; |
@@ -12,6 +13,20 @@ namespace WixToolset.Bal | |||
12 | 13 | ||
13 | public class BalBurnBackendExtension : BaseBurnBackendExtension | 14 | public class BalBurnBackendExtension : BaseBurnBackendExtension |
14 | { | 15 | { |
16 | private static readonly IntermediateTupleDefinition[] BurnTupleDefinitions = | ||
17 | { | ||
18 | BalTupleDefinitions.WixBalBAFactoryAssembly, | ||
19 | BalTupleDefinitions.WixBalBAFunctions, | ||
20 | BalTupleDefinitions.WixBalCondition, | ||
21 | BalTupleDefinitions.WixBalPackageInfo, | ||
22 | BalTupleDefinitions.WixDncOptions, | ||
23 | BalTupleDefinitions.WixMbaPrereqInformation, | ||
24 | BalTupleDefinitions.WixStdbaOptions, | ||
25 | BalTupleDefinitions.WixStdbaOverridableVariable, | ||
26 | }; | ||
27 | |||
28 | protected override IEnumerable<IntermediateTupleDefinition> TupleDefinitions => BurnTupleDefinitions; | ||
29 | |||
15 | public override void BundleFinalize() | 30 | public override void BundleFinalize() |
16 | { | 31 | { |
17 | base.BundleFinalize(); | 32 | base.BundleFinalize(); |