diff options
Diffstat (limited to 'src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.Iis/TestData/UsingIis/PackageComponents.wxs | 15 |
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> | ||
