aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2018-12-16 17:21:36 -0600
committerSean Hall <r.sean.hall@gmail.com>2018-12-16 17:26:16 -0600
commitaec6e9a4b21accd2e8aeb2cb36ad1cdc8f308f79 (patch)
tree4ebc8374ad56b99f00b8d09328e9baed3f2081d6 /src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs
parent4818bb24e8f7f22345f90393239ce92129238ecc (diff)
downloadwix-aec6e9a4b21accd2e8aeb2cb36ad1cdc8f308f79.tar.gz
wix-aec6e9a4b21accd2e8aeb2cb36ad1cdc8f308f79.tar.bz2
wix-aec6e9a4b21accd2e8aeb2cb36ad1cdc8f308f79.zip
Integrate into latest v4.
Still needs TupleDefinitions and Messages.
Diffstat (limited to 'src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs')
-rw-r--r--src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs b/src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs
new file mode 100644
index 00000000..29c6956d
--- /dev/null
+++ b/src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs
@@ -0,0 +1,15 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
3 xmlns:iis="http://wixtoolset.org/schemas/v4/wxs/iis">
4 <Fragment>
5 <Property Id="PORT" Value="3062" />
6 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
7 <Component>
8 <File Source="example.txt" />
9 <iis:WebSite Id="Test" Description="Test web server" Directory="TestWebSiteProductDirectory" AutoStart="yes" DirProperties="ReadAndExecute" ConfigureIfExists="no" >
10 <iis:WebAddress Id="TestAddress" Port="[PORT]" Secure="no" />
11 </iis:WebSite>
12 </Component>
13 </ComponentGroup>
14 </Fragment>
15</Wix>