aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-12-30 01:56:55 -0800
committerRob Mensching <rob@firegiant.com>2017-12-30 01:56:55 -0800
commitc8f39be3f8b70b36a8b89b6ccdd4ebb94290b6b3 (patch)
treee5936f50d2075a136ed0fc3a9c94aa5b5d2bb886 /src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs
parent3540e7467e1d5376660b13139a4a168e700b3dbf (diff)
downloadwix-c8f39be3f8b70b36a8b89b6ccdd4ebb94290b6b3.tar.gz
wix-c8f39be3f8b70b36a8b89b6ccdd4ebb94290b6b3.tar.bz2
wix-c8f39be3f8b70b36a8b89b6ccdd4ebb94290b6b3.zip
Initial code commit
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>