diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler_Bundle.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_Bundle.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs index cc4550a8..1c79a11b 100644 --- a/src/WixToolset.Core/Compiler_Bundle.cs +++ b/src/WixToolset.Core/Compiler_Bundle.cs | |||
@@ -1961,6 +1961,8 @@ namespace WixToolset.Core | |||
1961 | string installCondition = null; | 1961 | string installCondition = null; |
1962 | var cache = YesNoAlwaysType.Yes; // the default is to cache everything in tradeoff for stability over disk space. | 1962 | var cache = YesNoAlwaysType.Yes; // the default is to cache everything in tradeoff for stability over disk space. |
1963 | string cacheId = null; | 1963 | string cacheId = null; |
1964 | string description = null; | ||
1965 | string displayName = null; | ||
1964 | var logPathVariable = (packageType == WixBundlePackageType.Msu) ? String.Empty : null; | 1966 | var logPathVariable = (packageType == WixBundlePackageType.Msu) ? String.Empty : null; |
1965 | var rollbackPathVariable = (packageType == WixBundlePackageType.Msu) ? String.Empty : null; | 1967 | var rollbackPathVariable = (packageType == WixBundlePackageType.Msu) ? String.Empty : null; |
1966 | var permanent = YesNoType.NotSet; | 1968 | var permanent = YesNoType.NotSet; |
@@ -2038,10 +2040,10 @@ namespace WixToolset.Core | |||
2038 | cacheId = this.Core.GetAttributeValue(sourceLineNumbers, attrib); | 2040 | cacheId = this.Core.GetAttributeValue(sourceLineNumbers, attrib); |
2039 | break; | 2041 | break; |
2040 | case "Description": | 2042 | case "Description": |
2041 | compilerPayload.ParseDescription(attrib); | 2043 | description = this.Core.GetAttributeValue(sourceLineNumbers, attrib); |
2042 | break; | 2044 | break; |
2043 | case "DisplayName": | 2045 | case "DisplayName": |
2044 | compilerPayload.ParseDisplayName(attrib); | 2046 | displayName = this.Core.GetAttributeValue(sourceLineNumbers, attrib); |
2045 | break; | 2047 | break; |
2046 | case "EnableFeatureSelection": | 2048 | case "EnableFeatureSelection": |
2047 | enableFeatureSelection = this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib); | 2049 | enableFeatureSelection = this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib); |
@@ -2302,6 +2304,8 @@ namespace WixToolset.Core | |||
2302 | Attributes = attributes, | 2304 | Attributes = attributes, |
2303 | InstallCondition = installCondition, | 2305 | InstallCondition = installCondition, |
2304 | CacheId = cacheId, | 2306 | CacheId = cacheId, |
2307 | Description = description, | ||
2308 | DisplayName = displayName, | ||
2305 | LogPathVariable = logPathVariable, | 2309 | LogPathVariable = logPathVariable, |
2306 | RollbackLogPathVariable = rollbackPathVariable, | 2310 | RollbackLogPathVariable = rollbackPathVariable, |
2307 | }); | 2311 | }); |