aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Util/TestData/UsingFileShare/PackageComponents.wxs
blob: 7cedbb30f338eb6bec5098f90debec57db2dcbe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
    <Fragment>
        <util:User Id="Everyone" Name="Everyone" />

        <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
            <Component>
                <File Source="example.txt" />
                <util:FileShare Id="ExampleFileShare" Description="An example file share" Name="example">
                    <util:FileSharePermission User="Everyone" Read="yes" />
                </util:FileShare>
            </Component>
        </ComponentGroup>
    </Fragment>
</Wix>