diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-20 13:03:31 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-20 13:14:48 -0700 |
commit | fa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b (patch) | |
tree | dbd701531c4e66ccdf3e879dbbe15ba0c963ddfb | |
parent | a3fcca48e4258f37ce2f51502f7863942e8b23fe (diff) | |
download | wix-fa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b.tar.gz wix-fa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b.tar.bz2 wix-fa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b.zip |
Integrate latest tooling
-rw-r--r-- | global.json | 2 | ||||
-rw-r--r-- | src/wixext/UIExtensionFactory.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/global.json b/global.json index 6df1b3ab..4ec00563 100644 --- a/global.json +++ b/global.json | |||
@@ -1,6 +1,6 @@ | |||
1 | { | 1 | { |
2 | "msbuild-sdks": { | 2 | "msbuild-sdks": { |
3 | "WixToolset.Sdk": "4.0.0-build-0206" | 3 | "WixToolset.Sdk": "4.0.0-build-0211" |
4 | }, | 4 | }, |
5 | "sdk": { | 5 | "sdk": { |
6 | "allowPrerelease": false | 6 | "allowPrerelease": false |
diff --git a/src/wixext/UIExtensionFactory.cs b/src/wixext/UIExtensionFactory.cs index 1c9caacc..141aa39f 100644 --- a/src/wixext/UIExtensionFactory.cs +++ b/src/wixext/UIExtensionFactory.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.UI | |||
8 | 8 | ||
9 | public class UIExtensionFactory : BaseExtensionFactory | 9 | public class UIExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(UIExtensionData), | 13 | typeof(UIExtensionData), |
14 | }; | 14 | }; |