aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler_Bundle.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Compiler_Bundle.cs')
-rw-r--r--src/WixToolset.Core/Compiler_Bundle.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs
index c790d721..189ac9b5 100644
--- a/src/WixToolset.Core/Compiler_Bundle.cs
+++ b/src/WixToolset.Core/Compiler_Bundle.cs
@@ -1447,7 +1447,7 @@ namespace WixToolset.Core
1447 remotePayload.ProductName = this.Core.GetAttributeValue(sourceLineNumbers, attrib); 1447 remotePayload.ProductName = this.Core.GetAttributeValue(sourceLineNumbers, attrib);
1448 break; 1448 break;
1449 case "Size": 1449 case "Size":
1450 remotePayload.Size = this.Core.GetAttributeIntegerValue(sourceLineNumbers, attrib, 0, Int32.MaxValue); 1450 remotePayload.Size = this.Core.GetAttributeLongValue(sourceLineNumbers, attrib, 0, Int64.MaxValue);
1451 break; 1451 break;
1452 case "Version": 1452 case "Version":
1453 remotePayload.Version = this.Core.GetAttributeValue(sourceLineNumbers, attrib); 1453 remotePayload.Version = this.Core.GetAttributeValue(sourceLineNumbers, attrib);
@@ -3260,7 +3260,7 @@ namespace WixToolset.Core
3260 3260
3261 public string ProductName { get; set; } 3261 public string ProductName { get; set; }
3262 3262
3263 public int Size { get; set; } 3263 public long Size { get; set; }
3264 3264
3265 public string Version { get; set; } 3265 public string Version { get; set; }
3266 } 3266 }