Update project for Package/SummaryInformation change (and others).
Bob Arnson committed
Oct 27, 2020 at 16:13 UTC
9fc7ed95c8fd9337c10bb44dc42786b9fe0121a2
3 files changed
+7
-9
global.json
+1
-1
@@ -1,5 +1,5 @@
1
{
2
"msbuild-sdks": {
3
- "WixToolset.Sdk": "4.0.0-build-0157"
3
+ "WixToolset.Sdk": "4.0.0-build-0162"
4
}
5
}
src/test/WixToolsetTest.Sql/TestData/UsingSql/Package.wxs
+5
-6
@@ -1,16 +1,15 @@
1
-<?xml version="1.0" encoding="utf-8"?>
2
-<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3
- <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">
4
- <Package InstallerVersion="200" Compressed="no" InstallScope="perMachine" />
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
5
<MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
7
- <MediaTemplate />
6
+
7
8
<Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
9
<ComponentGroupRef Id="ProductComponents" />
10
</Feature>
11
13
- </Product>
12
+ </Package>
13
14
<Fragment>
15
<Directory Id="TARGETDIR" Name="SourceDir">
src/wixext/SqlCompiler.cs
+1
-2
@@ -48,7 +48,6 @@ namespace WixToolset.Sql
48
{
49
case "Component":
50
var componentId = context["ComponentId"];
51
- var directoryId = context["DirectoryId"];
51
52
switch (element.Name.LocalName)
53
{
@@ -68,7 +67,7 @@ namespace WixToolset.Sql
67
break;
68
case "Fragment":
69
case "Module":
71
- case "Product":
70
+ case "Package":
71
switch (element.Name.LocalName)
72
{
73
case "SqlDatabase":