From 4426b8745595b6e2c709e08871d04efbf574c1f5 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 20 Apr 2021 12:50:39 -0700 Subject: Integrate latest tooling --- global.json | 2 +- src/wixext/MsmqExtensionFactory.cs | 2 +- src/wixext/MsmqWindowsInstallerBackendExtension.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/global.json b/global.json index fc26eb6e..23dd3fa6 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "msbuild-sdks": { - "WixToolset.Sdk": "4.0.0-build-0206" + "WixToolset.Sdk": "4.0.0-build-0211" } } diff --git a/src/wixext/MsmqExtensionFactory.cs b/src/wixext/MsmqExtensionFactory.cs index 14dd5188..de9f786d 100644 --- a/src/wixext/MsmqExtensionFactory.cs +++ b/src/wixext/MsmqExtensionFactory.cs @@ -8,7 +8,7 @@ namespace WixToolset.Msmq public class MsmqExtensionFactory : BaseExtensionFactory { - protected override IEnumerable ExtensionTypes => new[] + protected override IReadOnlyCollection ExtensionTypes => new[] { typeof(MsmqCompiler), typeof(MsmqExtensionData), diff --git a/src/wixext/MsmqWindowsInstallerBackendExtension.cs b/src/wixext/MsmqWindowsInstallerBackendExtension.cs index 3f83db56..d317fb60 100644 --- a/src/wixext/MsmqWindowsInstallerBackendExtension.cs +++ b/src/wixext/MsmqWindowsInstallerBackendExtension.cs @@ -8,6 +8,6 @@ namespace WixToolset.Msmq public class MsmqWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension { - public override IEnumerable TableDefinitions => MsmqTableDefinitions.All; + public override IReadOnlyCollection TableDefinitions => MsmqTableDefinitions.All; } } -- cgit v1.2.3-55-g6feb