main
wxs 24 lines 1.06 KB
Raw
1 <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
2
3
4 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
5 <Fragment>
6 <ComponentGroup Id="ProductComponents">
7 <ComponentRef Id="Component1" />
8 </ComponentGroup>
9 </Fragment>
10
11 <Fragment>
12 <util:Group Id="ShouldNotExist" Name="Should Not Exist" />
13 <util:Group Id="AlsoShouldNotExist" Name="Also Should Not Exist" />
14
15 <Component Id="Component1" Guid="00030829-0000-0000-C000-000000000046" Directory="INSTALLFOLDER">
16 <File Source="$(sys.SOURCEFILEPATH)" KeyPath="yes" />
17
18 <util:User Id="CurrentUser" Name="[LogonUser]" Domain="[%USERDOMAIN]" RemoveOnUninstall="no" Vital="no">
19 <util:GroupRef Id="ShouldNotExist" />
20 <util:GroupRef Id="AlsoShouldNotExist" />
21 </util:User>
22 </Component>
23 </Fragment>
24 </Wix>