diff options
Diffstat (limited to 'src/test/WixToolsetTest.Util/TestData/UsingFileShare')
| -rw-r--r-- | src/test/WixToolsetTest.Util/TestData/UsingFileShare/Package.wxs | 34 | ||||
| -rw-r--r-- | src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs | 26 |
2 files changed, 28 insertions, 32 deletions
diff --git a/src/test/WixToolsetTest.Util/TestData/UsingFileShare/Package.wxs b/src/test/WixToolsetTest.Util/TestData/UsingFileShare/Package.wxs index 68ff98fd..32d1cba6 100644 --- a/src/test/WixToolsetTest.Util/TestData/UsingFileShare/Package.wxs +++ b/src/test/WixToolsetTest.Util/TestData/UsingFileShare/Package.wxs | |||
| @@ -1,22 +1,20 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 2 | <Product Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> |
| 3 | <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | 3 | <Package InstallerVersion="200" Compressed="no" InstallScope="perMachine" /> |
| 4 | <Package InstallerVersion="200" Compressed="no" InstallScope="perMachine" /> | ||
| 5 | 4 | ||
| 6 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> | 5 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
| 7 | <MediaTemplate /> | 6 | <MediaTemplate /> |
| 8 | 7 | ||
| 9 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> | 8 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
| 10 | <ComponentGroupRef Id="ProductComponents" /> | 9 | <ComponentGroupRef Id="ProductComponents" /> |
| 11 | </Feature> | 10 | </Feature> |
| 12 | 11 | </Product> | |
| 13 | </Product> | ||
| 14 | 12 | ||
| 15 | <Fragment> | 13 | <Fragment> |
| 16 | <Directory Id="TARGETDIR" Name="SourceDir"> | 14 | <Directory Id="TARGETDIR" Name="SourceDir"> |
| 17 | <Directory Id="ProgramFilesFolder"> | 15 | <Directory Id="ProgramFilesFolder"> |
| 18 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> | 16 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 19 | </Directory> | 17 | </Directory> |
| 20 | </Directory> | 18 | </Directory> |
| 21 | </Fragment> | 19 | </Fragment> |
| 22 | </Wix> | 20 | </Wix> |
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> |
