Replace the removed Gaming namespace with the missing Http namespace.
Sean Hall committed
Jun 15, 2020 at 22:13 UTC
99cdb4f1d7829a2efb503881abe57033672c2b47
4 files changed
+7
-6
appveyor.cmd
+4
-4
@@ -2,11 +2,11 @@
2
@pushd %~dp0
3
@set _P=%~dp0build\Release\publish
4
5
-dotnet pack -c Release src\WixToolset.Converters
6
-dotnet pack -c Release src\WixToolset.Converters.Tupleizer
5
+dotnet pack -c Release src\WixToolset.Converters || exit /b
6
+dotnet pack -c Release src\WixToolset.Converters.Tupleizer || exit /b
7
8
-dotnet build -c Release src\test\WixToolsetTest.Converters
9
-dotnet build -c Release src\test\WixToolsetTest.Converters.Tupleizer
8
+dotnet build -c Release src\test\WixToolsetTest.Converters || exit /b
9
+dotnet build -c Release src\test\WixToolsetTest.Converters.Tupleizer || exit /b
10
11
@popd
12
@endlocal
src/WixToolset.Converters/Wix3Converter.cs
+1
-1
@@ -49,7 +49,7 @@ namespace WixToolset.Converters
49
{ "http://schemas.microsoft.com/wix/DependencyExtension", "http://wixtoolset.org/schemas/v4/wxs/dependency" },
50
{ "http://schemas.microsoft.com/wix/DifxAppExtension", "http://wixtoolset.org/schemas/v4/wxs/difxapp" },
51
{ "http://schemas.microsoft.com/wix/FirewallExtension", "http://wixtoolset.org/schemas/v4/wxs/firewall" },
52
- { "http://schemas.microsoft.com/wix/GamingExtension", "http://wixtoolset.org/schemas/v4/wxs/gaming" },
52
+ { "http://schemas.microsoft.com/wix/HttpExtension", "http://wixtoolset.org/schemas/v4/wxs/http" },
53
{ "http://schemas.microsoft.com/wix/IIsExtension", "http://wixtoolset.org/schemas/v4/wxs/iis" },
54
{ "http://schemas.microsoft.com/wix/MsmqExtension", "http://wixtoolset.org/schemas/v4/wxs/msmq" },
55
{ "http://schemas.microsoft.com/wix/NetFxExtension", "http://wixtoolset.org/schemas/v4/wxs/netfx" },
src/WixToolset.Converters/WixToolset.Converters.csproj
+1
-1
@@ -16,7 +16,7 @@
16
</PropertyGroup>
17
18
<ItemGroup>
19
- <PackageReference Include="WixToolset.Core" Version="4.0.*" />
19
+ <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" />
20
</ItemGroup>
21
22
<ItemGroup>
src/test/WixToolsetTest.Converters/WixToolsetTest.Converters.csproj
+1
@@ -31,6 +31,7 @@
31
32
<ItemGroup>
33
<PackageReference Include="WixBuildTools.TestSupport" Version="4.0.*" />
34
+ <PackageReference Include="WixToolset.Core" Version="4.0.*" />
35
<PackageReference Include="WixToolset.Core.TestPackage" Version="4.0.*" />
36
</ItemGroup>
37