blob: d388d2a32deee875acf62bf39c131387eae5baca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!-- 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. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:dep="http://wixtoolset.org/schemas/v4/wxs/dependency">
<Fragment>
<ComponentGroup Id="ProductComponents">
<ComponentRef Id="FileComponent2" />
</ComponentGroup>
</Fragment>
<Fragment>
<Component Id="FileComponent2" Guid="BB609407-F2F4-458D-95F8-BF184D6E8496" Directory="INSTALLFOLDER">
<File Source="$(sys.SOURCEFILEPATH)" />
<Provides Key="WiX.$(var.TestGroupName).E,v1.0" dep:Check="yes" />
</Component>
</Fragment>
</Wix>
|