aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/Environment
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2019-11-14 18:10:00 -0500
committerBob Arnson <bob@firegiant.com>2019-11-14 18:14:17 -0500
commit94b3c44ea27e29253a26e18bf0c70295d0fc48e5 (patch)
tree680dedd2ec7c6c700d83e57455bd4c4ded86e4ba /src/test/WixToolsetTest.CoreIntegration/TestData/Environment
parente34ea332def4718110e9a7efcf9e12bf7456c753 (diff)
downloadwix-94b3c44ea27e29253a26e18bf0c70295d0fc48e5.tar.gz
wix-94b3c44ea27e29253a26e18bf0c70295d0fc48e5.tar.bz2
wix-94b3c44ea27e29253a26e18bf0c70295d0fc48e5.zip
Fix EnvironmentTuple nullable fields. Add test.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/Environment')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Environment/Environment.wxs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Environment/Environment.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Environment/Environment.wxs
new file mode 100644
index 00000000..284801e2
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Environment/Environment.wxs
@@ -0,0 +1,13 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents">
5 <Component Id="WixEnvironmentTest" Guid="{068C1CF4-DA54-4221-B0D2-E7310770DF0B}" Directory="INSTALLFOLDER">
6 <Environment Id="WixEnvironmentTest1" Action="set" Name="WixEnvTest1"/>
7 <Environment Id="WixEnvironmentTest2" Action="create" Name="WixEnvTest1"/>
8 <Environment Id="WixEnvironmentTest3" Action="remove" Name="WixEnvTest1"/>
9 <Environment Id="WixEnvironmentTest4" Name="WIX" Action="set" System="yes" Value="[INSTALLFOLDER]" />
10 </Component>
11 </ComponentGroup>
12 </Fragment>
13</Wix>