diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-26 14:55:01 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-26 14:55:01 -0700 |
| commit | cc20def99bbd0b28f19d90aee50d67f674738505 (patch) | |
| tree | d73260b1088990e829183cb4562d5b326a2b8ec7 /src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs | |
| parent | c95213afde7af57af4b2bbaa2d29344accbebf01 (diff) | |
| download | wix-cc20def99bbd0b28f19d90aee50d67f674738505.tar.gz wix-cc20def99bbd0b28f19d90aee50d67f674738505.tar.bz2 wix-cc20def99bbd0b28f19d90aee50d67f674738505.zip | |
Remove use of inner text conversions for Util.wixext
Also, convert all test code to modern expectation
Diffstat (limited to 'src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs b/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs index c548bc1d..7cedbb30 100644 --- a/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs +++ b/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs | |||
| @@ -1,16 +1,14 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> |
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" | 2 | <Fragment> |
| 3 | xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | 3 | <util:User Id="Everyone" Name="Everyone" /> |
| 4 | <Fragment> | ||
| 5 | <util:User Id="Everyone" Name="Everyone" /> | ||
| 6 | 4 | ||
| 7 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | 5 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
| 8 | <Component> | 6 | <Component> |
| 9 | <File Source="example.txt" /> | 7 | <File Source="example.txt" /> |
| 10 | <util:FileShare Id="ExampleFileShare" Description="An example file share" Name="example"> | 8 | <util:FileShare Id="ExampleFileShare" Description="An example file share" Name="example"> |
| 11 | <util:FileSharePermission User="Everyone" Read="yes" /> | 9 | <util:FileSharePermission User="Everyone" Read="yes" /> |
| 12 | </util:FileShare> | 10 | </util:FileShare> |
| 13 | </Component> | 11 | </Component> |
| 14 | </ComponentGroup> | 12 | </ComponentGroup> |
| 15 | </Fragment> | 13 | </Fragment> |
| 16 | </Wix> | 14 | </Wix> |
