aboutsummaryrefslogtreecommitdiff
path: root/src/test/msi/TestData/UtilExtensionGroupTests/ProductWithCommandLineParameters/ProductWithCommandLineParameters.wxs
blob: 36d10aa3e5923dc56e8c43e0835003180bab7e6d (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:util="http://wixtoolset.org/schemas/v4/wxs/util">
  <Fragment>
    <ComponentGroup Id="ProductComponents">
      <ComponentRef Id="Component1" />
    </ComponentGroup>

      <Property Id="TESTDOMAIN" Secure="yes" />
  </Fragment>

  <Fragment>
      <Component Id="Component1" Guid="1FDC6C4D-7741-4BF1-A4F0-4231879CEC45" Directory="INSTALLFOLDER">
          <util:Group Id="TEST_GROUP1" Name="[TESTPARAMETER1]" Domain="[TESTDOMAIN]" CreateGroup="yes" RemoveOnUninstall="yes" />
      </Component>
  </Fragment>
</Wix>