aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-10-26 21:57:26 -0400
committerBob Arnson <bob@firegiant.com>2020-10-26 22:02:18 -0400
commitfffaeb96871b6667d73b51fde61d0cd557428f49 (patch)
tree5b530dca4505dfe7e48deac67c98fbbce61c9dea
parentf3138abed03b734f76fd0788f671e7da55483299 (diff)
downloadwix-fffaeb96871b6667d73b51fde61d0cd557428f49.tar.gz
wix-fffaeb96871b6667d73b51fde61d0cd557428f49.tar.bz2
wix-fffaeb96871b6667d73b51fde61d0cd557428f49.zip
Update test authoring for Package/SummaryInformation change.
-rw-r--r--global.json2
-rw-r--r--src/test/WixToolsetTest.Iis/TestData/UsingIis/Package.wxs11
-rw-r--r--src/wixext/IIsCompiler.cs2
3 files changed, 7 insertions, 8 deletions
diff --git a/global.json b/global.json
index 4d9df50b..f94ab6df 100644
--- a/global.json
+++ b/global.json
@@ -1,5 +1,5 @@
1{ 1{
2 "msbuild-sdks": { 2 "msbuild-sdks": {
3 "WixToolset.Sdk": "4.0.0-build-0157" 3 "WixToolset.Sdk": "4.0.0-build-0162"
4 } 4 }
5} 5}
diff --git a/src/test/WixToolsetTest.Iis/TestData/UsingIis/Package.wxs b/src/test/WixToolsetTest.Iis/TestData/UsingIis/Package.wxs
index 7ae8f082..5f424167 100644
--- a/src/test/WixToolsetTest.Iis/TestData/UsingIis/Package.wxs
+++ b/src/test/WixToolsetTest.Iis/TestData/UsingIis/Package.wxs
@@ -1,16 +1,15 @@
1<?xml version="1.0" encoding="utf-8"?> 1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 2 <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" InstallerVersion="200">
3 <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> 3
4 <Package InstallerVersion="200" Compressed="no" InstallScope="perMachine" />
5 4
6 <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> 5 <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
7 <MediaTemplate /> 6
8 7
9 <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> 8 <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
10 <ComponentGroupRef Id="ProductComponents" /> 9 <ComponentGroupRef Id="ProductComponents" />
11 </Feature> 10 </Feature>
12 11
13 </Product> 12 </Package>
14 13
15 <Fragment> 14 <Fragment>
16 <Directory Id="TARGETDIR" Name="SourceDir"> 15 <Directory Id="TARGETDIR" Name="SourceDir">
diff --git a/src/wixext/IIsCompiler.cs b/src/wixext/IIsCompiler.cs
index f6b4c78c..27258094 100644
--- a/src/wixext/IIsCompiler.cs
+++ b/src/wixext/IIsCompiler.cs
@@ -102,7 +102,7 @@ namespace WixToolset.Iis
102 break; 102 break;
103 case "Fragment": 103 case "Fragment":
104 case "Module": 104 case "Module":
105 case "Product": 105 case "Package":
106 switch (element.Name.LocalName) 106 switch (element.Name.LocalName)
107 { 107 {
108 case "WebApplication": 108 case "WebApplication":