diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-05-14 19:40:26 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-05-16 21:29:09 +1000 |
| commit | c3c1d46cd8d833bc7d59ee52a5daf6210679ac05 (patch) | |
| tree | 60ebd22b64262343211e74445ed6af61d611d3b5 /src/WixToolset.Data/Tuples | |
| parent | 20e2190443f2e47dae1cb8c6fc1abb4d2e213e6b (diff) | |
| download | wix-c3c1d46cd8d833bc7d59ee52a5daf6210679ac05.tar.gz wix-c3c1d46cd8d833bc7d59ee52a5daf6210679ac05.tar.bz2 wix-c3c1d46cd8d833bc7d59ee52a5daf6210679ac05.zip | |
WIXFEAT:6164 Move DisplayInternalUI into BalExtension.
Diffstat (limited to 'src/WixToolset.Data/Tuples')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixBundleMsiPackageTuple.cs | 3 | ||||
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixBundleMspPackageTuple.cs | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleMsiPackageTuple.cs b/src/WixToolset.Data/Tuples/WixBundleMsiPackageTuple.cs index 3a205376..163b56ae 100644 --- a/src/WixToolset.Data/Tuples/WixBundleMsiPackageTuple.cs +++ b/src/WixToolset.Data/Tuples/WixBundleMsiPackageTuple.cs | |||
| @@ -40,7 +40,6 @@ namespace WixToolset.Data.Tuples | |||
| 40 | [Flags] | 40 | [Flags] |
| 41 | public enum WixBundleMsiPackageAttributes | 41 | public enum WixBundleMsiPackageAttributes |
| 42 | { | 42 | { |
| 43 | DisplayInternalUI = 0x1, | ||
| 44 | EnableFeatureSelection = 0x4, | 43 | EnableFeatureSelection = 0x4, |
| 45 | ForcePerMachine = 0x2, | 44 | ForcePerMachine = 0x2, |
| 46 | } | 45 | } |
| @@ -99,8 +98,6 @@ namespace WixToolset.Data.Tuples | |||
| 99 | set => this.Set((int)WixBundleMsiPackageTupleFields.Manufacturer, value); | 98 | set => this.Set((int)WixBundleMsiPackageTupleFields.Manufacturer, value); |
| 100 | } | 99 | } |
| 101 | 100 | ||
| 102 | public bool DisplayInternalUI => (this.Attributes & WixBundleMsiPackageAttributes.DisplayInternalUI) == WixBundleMsiPackageAttributes.DisplayInternalUI; | ||
| 103 | |||
| 104 | public bool EnableFeatureSelection => (this.Attributes & WixBundleMsiPackageAttributes.EnableFeatureSelection) == WixBundleMsiPackageAttributes.EnableFeatureSelection; | 101 | public bool EnableFeatureSelection => (this.Attributes & WixBundleMsiPackageAttributes.EnableFeatureSelection) == WixBundleMsiPackageAttributes.EnableFeatureSelection; |
| 105 | 102 | ||
| 106 | public bool ForcePerMachine => (this.Attributes & WixBundleMsiPackageAttributes.ForcePerMachine) == WixBundleMsiPackageAttributes.ForcePerMachine; | 103 | public bool ForcePerMachine => (this.Attributes & WixBundleMsiPackageAttributes.ForcePerMachine) == WixBundleMsiPackageAttributes.ForcePerMachine; |
diff --git a/src/WixToolset.Data/Tuples/WixBundleMspPackageTuple.cs b/src/WixToolset.Data/Tuples/WixBundleMspPackageTuple.cs index 6c5cb38b..7e94ff25 100644 --- a/src/WixToolset.Data/Tuples/WixBundleMspPackageTuple.cs +++ b/src/WixToolset.Data/Tuples/WixBundleMspPackageTuple.cs | |||
| @@ -34,7 +34,6 @@ namespace WixToolset.Data.Tuples | |||
| 34 | [Flags] | 34 | [Flags] |
| 35 | public enum WixBundleMspPackageAttributes | 35 | public enum WixBundleMspPackageAttributes |
| 36 | { | 36 | { |
| 37 | DisplayInternalUI = 0x1, | ||
| 38 | Slipstream = 0x2, | 37 | Slipstream = 0x2, |
| 39 | TargetUnspecified = 0x4, | 38 | TargetUnspecified = 0x4, |
| 40 | } | 39 | } |
| @@ -75,8 +74,6 @@ namespace WixToolset.Data.Tuples | |||
| 75 | set => this.Set((int)WixBundleMspPackageTupleFields.PatchXml, value); | 74 | set => this.Set((int)WixBundleMspPackageTupleFields.PatchXml, value); |
| 76 | } | 75 | } |
| 77 | 76 | ||
| 78 | public bool DisplayInternalUI => (this.Attributes & WixBundleMspPackageAttributes.DisplayInternalUI) == WixBundleMspPackageAttributes.DisplayInternalUI; | ||
| 79 | |||
| 80 | public bool Slipstream => (this.Attributes & WixBundleMspPackageAttributes.Slipstream) == WixBundleMspPackageAttributes.Slipstream; | 77 | public bool Slipstream => (this.Attributes & WixBundleMspPackageAttributes.Slipstream) == WixBundleMspPackageAttributes.Slipstream; |
| 81 | 78 | ||
| 82 | public bool TargetUnspecified => (this.Attributes & WixBundleMspPackageAttributes.TargetUnspecified) == WixBundleMspPackageAttributes.TargetUnspecified; | 79 | public bool TargetUnspecified => (this.Attributes & WixBundleMspPackageAttributes.TargetUnspecified) == WixBundleMspPackageAttributes.TargetUnspecified; |
