aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs')
-rw-r--r--src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs b/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs
new file mode 100644
index 00000000..c548bc1d
--- /dev/null
+++ b/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs
@@ -0,0 +1,16 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
3 xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
4 <Fragment>
5 <util:User Id="Everyone" Name="Everyone" />
6
7 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
8 <Component>
9 <File Source="example.txt" />
10 <util:FileShare Id="ExampleFileShare" Description="An example file share" Name="example">
11 <util:FileSharePermission User="Everyone" Read="yes" />
12 </util:FileShare>
13 </Component>
14 </ComponentGroup>
15 </Fragment>
16</Wix>