aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixFragmentTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/WixFragmentTuple.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/WixFragmentTuple.cs b/src/WixToolset.Data/Tuples/WixFragmentTuple.cs
index fedfa872..cda7534d 100644
--- a/src/WixToolset.Data/Tuples/WixFragmentTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixFragmentTuple.cs
@@ -8,7 +8,9 @@ namespace WixToolset.Data
8 { 8 {
9 public static readonly IntermediateTupleDefinition WixFragment = new IntermediateTupleDefinition( 9 public static readonly IntermediateTupleDefinition WixFragment = new IntermediateTupleDefinition(
10 TupleDefinitionType.WixFragment, 10 TupleDefinitionType.WixFragment,
11 new IntermediateFieldDefinition[0], 11 new IntermediateFieldDefinition[]
12 {
13 },
12 typeof(WixFragmentTuple)); 14 typeof(WixFragmentTuple));
13 } 15 }
14} 16}