@joebigelow / wix-1 / commits / 1656cd76

Update dependencies

Rob Mensching committed Apr 7, 2021 at 22:41 UTC 1656cd76e95e78b09d1fd9724c0c02323b5c3428
2 files changed +5 -11
global.json
+1 -1
@@ -1,5 +1,5 @@
1 {
2 "msbuild-sdks": {
3 - "WixToolset.Sdk": "4.0.0-build-0190"
3 + "WixToolset.Sdk": "4.0.0-build-0206"
4 }
5 }
src/test/WixToolsetTest.Iis/TestData/UsingIis/Package.wxs
+4 -10
@@ -1,23 +1,17 @@
1 <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 -
4 -
3 <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
6 -
4
5 <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
6 <ComponentGroupRef Id="ProductComponents" />
7 </Feature>
11 -
8 </Package>
9
10 <Fragment>
15 - <Directory Id="TARGETDIR" Name="SourceDir">
16 - <Directory Id="ProgramFilesFolder">
17 - <Directory Id="INSTALLFOLDER" Name="MsiPackage">
18 - <Directory Id="TestWebSiteProductDirectory" />
19 - </Directory>
11 + <StandardDirectory Id="ProgramFilesFolder">
12 + <Directory Id="INSTALLFOLDER" Name="MsiPackage">
13 + <Directory Id="TestWebSiteProductDirectory" />
14 </Directory>
21 - </Directory>
15 + </StandardDirectory>
16 </Fragment>
17 </Wix>