aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/Environment/Environment.wxs
blob: de9744a779e3d51909a4fdf85c2cd5e9521915cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
    <Fragment>
        <ComponentGroup Id="ProductComponents">
            <Component Id="WixEnvironmentTest" Guid="{068C1CF4-DA54-4221-B0D2-E7310770DF0B}" Directory="INSTALLFOLDER">
                <Environment Id="WixEnvironmentTest1" Action="set" Name="WixEnvTest1"/>
                <Environment Id="WixEnvironmentTest2" Action="create" Name="WixEnvTest1"/>
                <Environment Id="WixEnvironmentTest3" Action="remove" Name="WixEnvTest1"/>
                <Environment Id="WixEnvironmentTest4" Name="WIX" Action="set" System="yes" Value="[INSTALLFOLDER]" />
                <Environment Id="PATH" Name="PATH" Action="set" Part="first" Value="[INSTALLFOLDER]; " System="yes" />
            </Component>
        </ComponentGroup>
    </Fragment>
</Wix>