aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-03 10:37:34 -0800
committerRob Mensching <rob@firegiant.com>2021-03-03 12:03:35 -0800
commit816bfd180f132a9b07aaa573f5ac0f5948195764 (patch)
treeeccb0db93007e00d3d8175f423338e960a7778f8 /src/test/WixToolsetTest.CoreIntegration/TestData
parente362f93f9fa9ed4b174333d44fcda25790bc85e0 (diff)
downloadwix-816bfd180f132a9b07aaa573f5ac0f5948195764.tar.gz
wix-816bfd180f132a9b07aaa573f5ac0f5948195764.tar.bz2
wix-816bfd180f132a9b07aaa573f5ac0f5948195764.zip
Complete MOVE_TO_BACKEND code migration
Fixes wixtoolset/issues#6212
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
index 7f4a43e5..d32e808c 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
@@ -7,7 +7,7 @@
7 7
8 <CustomTable Id="CustomTable1"> 8 <CustomTable Id="CustomTable1">
9 <Column Id="Column1" Type="string" PrimaryKey="yes" Category="text" Modularize="column" Description="The first custom column." /> 9 <Column Id="Column1" Type="string" PrimaryKey="yes" Category="text" Modularize="column" Description="The first custom column." />
10 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" /> 10 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" Modularize="column" />
11 <Row> 11 <Row>
12 <Data Column="Column1" Value="Row1" /> 12 <Data Column="Column1" Value="Row1" />
13 <Data Column="Component_" Value="test.txt" /> 13 <Data Column="Component_" Value="test.txt" />
@@ -20,7 +20,7 @@
20 20
21 <CustomTable Id="CustomTable2" Unreal="yes"> 21 <CustomTable Id="CustomTable2" Unreal="yes">
22 <Column Id="ColumnA" Type="string" PrimaryKey="yes" /> 22 <Column Id="ColumnA" Type="string" PrimaryKey="yes" />
23 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" /> 23 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Modularize="column" />
24 <Row> 24 <Row>
25 <Data Column="ColumnA" Value="RowA" /> 25 <Data Column="ColumnA" Value="RowA" />
26 <Data Column="Component_" Value="test.txt" /> 26 <Data Column="Component_" Value="test.txt" />