From a91661efa6d4c678d8ddee458bbf4b8643f96377 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 5 Feb 2020 14:38:46 -0800 Subject: Ensure path tuples fields with BaseUri are saved --- src/WixToolset.Data/IntermediateTupleExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WixToolset.Data/IntermediateTupleExtensions.cs b/src/WixToolset.Data/IntermediateTupleExtensions.cs index 7fb2a6c3..95fb1b19 100644 --- a/src/WixToolset.Data/IntermediateTupleExtensions.cs +++ b/src/WixToolset.Data/IntermediateTupleExtensions.cs @@ -85,7 +85,7 @@ namespace WixToolset.Data public static IntermediateField Set(this IntermediateTuple tuple, int index, IntermediateFieldPathValue value) { - if (value == null && NoFieldMetadata(tuple, index)) + if (value?.Path == null && value?.BaseUri == null && NoFieldMetadata(tuple, index)) { return tuple.Fields[index] = null; } -- cgit v1.2.3-55-g6feb