aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-23 00:56:36 -0700
committerRob Mensching <rob@firegiant.com>2020-06-23 02:10:31 -0700
commited0fb39537c0cfb13922537a26f9d895180d42d8 (patch)
tree7bc1015a1a548c6b1d38b7f9608afe34ffbf6ea0 /src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable
parent9319732abb1eee646b3540b8511b328833a1acfb (diff)
downloadwix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.gz
wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.bz2
wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.zip
Remove obsolete inner text handling
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs
index 8482a57e..db755171 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs
@@ -10,12 +10,12 @@
10 <BundleAttributeDefinition Id="Column2" /> 10 <BundleAttributeDefinition Id="Column2" />
11 11
12 <BundleElement> 12 <BundleElement>
13 <BundleAttribute Id="Id">one</BundleAttribute> 13 <BundleAttribute Id="Id" Value="one" />
14 <BundleAttribute Id="Column2">two</BundleAttribute> 14 <BundleAttribute Id="Column2" Value="two" />
15 </BundleElement> 15 </BundleElement>
16 <BundleElement> 16 <BundleElement>
17 <BundleAttribute Id="Column2">&lt;</BundleAttribute> 17 <BundleAttribute Id="Column2" Value="&lt;" />
18 <BundleAttribute Id="Id">&gt;</BundleAttribute> 18 <BundleAttribute Id="Id" Value="&gt;" />
19 </BundleElement> 19 </BundleElement>
20 </BundleCustomData> 20 </BundleCustomData>
21 21
@@ -28,23 +28,23 @@
28 <Fragment> 28 <Fragment>
29 <BundleCustomDataRef Id="BundleCustomTableBA"> 29 <BundleCustomDataRef Id="BundleCustomTableBA">
30 <BundleElement> 30 <BundleElement>
31 <BundleAttribute Id="Id">1</BundleAttribute> 31 <BundleAttribute Id="Id" Value="1" />
32 <BundleAttribute Id="Column2">2</BundleAttribute> 32 <BundleAttribute Id="Column2" Value="2" />
33 </BundleElement> 33 </BundleElement>
34 </BundleCustomDataRef> 34 </BundleCustomDataRef>
35 35
36 <BundleCustomDataRef Id="BundleCustomTableBE"> 36 <BundleCustomDataRef Id="BundleCustomTableBE">
37 <BundleElement> 37 <BundleElement>
38 <BundleAttribute Id="Id">one</BundleAttribute> 38 <BundleAttribute Id="Id" Value="one" />
39 <BundleAttribute Id="Column2">two</BundleAttribute> 39 <BundleAttribute Id="Column2" Value="two" />
40 </BundleElement> 40 </BundleElement>
41 <BundleElement> 41 <BundleElement>
42 <BundleAttribute Id="Column2">&lt;</BundleAttribute> 42 <BundleAttribute Id="Column2" Value="&lt;" />
43 <BundleAttribute Id="Id">&gt;</BundleAttribute> 43 <BundleAttribute Id="Id" Value="&gt;" />
44 </BundleElement> 44 </BundleElement>
45 <BundleElement> 45 <BundleElement>
46 <BundleAttribute Id="Id">1</BundleAttribute> 46 <BundleAttribute Id="Id" Value="1" />
47 <BundleAttribute Id="Column2">2</BundleAttribute> 47 <BundleAttribute Id="Column2" Value="2" />
48 </BundleElement> 48 </BundleElement>
49 </BundleCustomDataRef> 49 </BundleCustomDataRef>
50 50