aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-20 13:03:31 -0700
committerRob Mensching <rob@firegiant.com>2021-04-20 13:14:48 -0700
commitfa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b (patch)
treedbd701531c4e66ccdf3e879dbbe15ba0c963ddfb
parenta3fcca48e4258f37ce2f51502f7863942e8b23fe (diff)
downloadwix-fa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b.tar.gz
wix-fa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b.tar.bz2
wix-fa8aaa0fbc7ea3bbdcd3f119ee21c61f001f3a9b.zip
Integrate latest tooling
-rw-r--r--global.json2
-rw-r--r--src/wixext/UIExtensionFactory.cs2
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 };