aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--global.json2
-rw-r--r--src/wixext/DirectXExtensionFactory.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/global.json b/global.json
index fc26eb6e..23dd3fa6 100644
--- a/global.json
+++ b/global.json
@@ -1,5 +1,5 @@
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} 5}
diff --git a/src/wixext/DirectXExtensionFactory.cs b/src/wixext/DirectXExtensionFactory.cs
index b3755ee9..fb7f84aa 100644
--- a/src/wixext/DirectXExtensionFactory.cs
+++ b/src/wixext/DirectXExtensionFactory.cs
@@ -8,7 +8,7 @@ namespace WixToolset.DirectX
8 8
9 public class DirectXExtensionFactory : BaseExtensionFactory 9 public class DirectXExtensionFactory : BaseExtensionFactory
10 { 10 {
11 protected override IEnumerable<Type> ExtensionTypes => new[] 11 protected override IReadOnlyCollection<Type> ExtensionTypes => new[]
12 { 12 {
13 typeof(DirectXExtensionData), 13 typeof(DirectXExtensionData),
14 }; 14 };