aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-02-27 16:29:58 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-03-02 15:50:47 -0600
commitb54ac261d0a03b75cf05ef370351445774b82155 (patch)
treedb5877ab147132b9fde78b53b4927e909f33661d /src/WixToolset.Core
parented20ef6dc8caa5d585c1a715ff4ba577687bf291 (diff)
downloadwix-b54ac261d0a03b75cf05ef370351445774b82155.tar.gz
wix-b54ac261d0a03b75cf05ef370351445774b82155.tar.bz2
wix-b54ac261d0a03b75cf05ef370351445774b82155.zip
Test big payloads by RemotePayload since real files are slow.
The test will be moved to a Burn e2e test. #4008
Diffstat (limited to 'src/WixToolset.Core')
-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 }