From ca376995792d2e2a1a7f39760989496702a8f603 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 6 Dec 2017 11:21:42 -0800 Subject: Fix handling of long values and baseUri in path fields --- src/WixToolset.Data/IntermediateSection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Data/IntermediateSection.cs') diff --git a/src/WixToolset.Data/IntermediateSection.cs b/src/WixToolset.Data/IntermediateSection.cs index 5d17eb31..54758136 100644 --- a/src/WixToolset.Data/IntermediateSection.cs +++ b/src/WixToolset.Data/IntermediateSection.cs @@ -61,7 +61,7 @@ namespace WixToolset.Data /// /// Parse a section from the JSON data. /// - internal static IntermediateSection Deserialize(ITupleDefinitionCreator creator, JsonObject jsonObject) + internal static IntermediateSection Deserialize(ITupleDefinitionCreator creator, Uri baseUri, JsonObject jsonObject) { var codepage = jsonObject.GetValueOrDefault("codepage", 0); var id = jsonObject.GetValueOrDefault("id"); @@ -83,7 +83,7 @@ namespace WixToolset.Data foreach (JsonObject tupleJson in tuplesJson) { - var tuple = IntermediateTuple.Deserialize(creator, tupleJson); + var tuple = IntermediateTuple.Deserialize(creator, baseUri, tupleJson); section.Tuples.Add(tuple); } -- cgit v1.2.3-55-g6feb