diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-08-24 17:25:00 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-08-24 18:57:49 -0400 |
| commit | c237bb3bb00d36c50271a70baac68f49890e35e1 (patch) | |
| tree | 25f90ddb7b74180fc3ef299c899585f24e88809f /src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable | |
| parent | 2c040e2d5b401af3607cf6e482cffeaa511d167a (diff) | |
| download | wix-c237bb3bb00d36c50271a70baac68f49890e35e1.tar.gz wix-c237bb3bb00d36c50271a70baac68f49890e35e1.tar.bz2 wix-c237bb3bb00d36c50271a70baac68f49890e35e1.zip | |
Update decompiler to use XDocument rather than generated classes.
- Use CompareXml for diffing.
- Change CustomAction/@ScriptFile to @ScriptSourceFile.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable-Expected.wxs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable-Expected.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable-Expected.wxs index c55f4ed0..22036ae5 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable-Expected.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable-Expected.wxs | |||
| @@ -6,12 +6,12 @@ | |||
| 6 | <Column Id="Column1" PrimaryKey="yes" Type="string" Width="0" Category="text" Description="The first custom column." /> | 6 | <Column Id="Column1" PrimaryKey="yes" Type="string" Width="0" Category="text" Description="The first custom column." /> |
| 7 | <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" /> | 7 | <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" /> |
| 8 | <Row> | 8 | <Row> |
| 9 | <Data Column="Column1">Row1</Data> | 9 | <Data Column="Column1" Value="Row1" /> |
| 10 | <Data Column="Component_">test.txt</Data> | 10 | <Data Column="Component_" Value="test.txt" /> |
| 11 | </Row> | 11 | </Row> |
| 12 | <Row> | 12 | <Row> |
| 13 | <Data Column="Column1">Row2</Data> | 13 | <Data Column="Column1" Value="Row2" /> |
| 14 | <Data Column="Component_">test.txt</Data> | 14 | <Data Column="Component_" Value="test.txt" /> |
| 15 | </Row> | 15 | </Row> |
| 16 | </CustomTable> | 16 | </CustomTable> |
| 17 | <Directory Id="TARGETDIR" Name="SourceDir"> | 17 | <Directory Id="TARGETDIR" Name="SourceDir"> |
