diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-20 12:37:29 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-20 12:39:25 -0700 |
commit | e137eef6a20999a37a137414b8c8b9a8f5af3cd4 (patch) | |
tree | 63d2e3651c9c4249583beb6a029b96bd1d7e9aff | |
parent | f283708b2a9b38459345ce433204d854d478c94a (diff) | |
download | wix-e137eef6a20999a37a137414b8c8b9a8f5af3cd4.tar.gz wix-e137eef6a20999a37a137414b8c8b9a8f5af3cd4.tar.bz2 wix-e137eef6a20999a37a137414b8c8b9a8f5af3cd4.zip |
Integrate latest tooling
-rw-r--r-- | global.json | 2 | ||||
-rw-r--r-- | src/wixext/VSExtensionFactory.cs | 2 | ||||
-rw-r--r-- | src/wixext/VSWindowsInstallerBackendBinderExtension.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 @@ | |||
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/VSExtensionFactory.cs b/src/wixext/VSExtensionFactory.cs index cc0d7314..c6e0cc31 100644 --- a/src/wixext/VSExtensionFactory.cs +++ b/src/wixext/VSExtensionFactory.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.VisualStudio | |||
8 | 8 | ||
9 | public class VSExtensionFactory : BaseExtensionFactory | 9 | public class VSExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(VSCompiler), | 13 | typeof(VSCompiler), |
14 | typeof(VSExtensionData), | 14 | typeof(VSExtensionData), |
diff --git a/src/wixext/VSWindowsInstallerBackendBinderExtension.cs b/src/wixext/VSWindowsInstallerBackendBinderExtension.cs index 825c8ca7..d0d8648c 100644 --- a/src/wixext/VSWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/VSWindowsInstallerBackendBinderExtension.cs | |||
@@ -8,6 +8,6 @@ namespace WixToolset.VisualStudio | |||
8 | 8 | ||
9 | public class VSWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension | 9 | public class VSWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension |
10 | { | 10 | { |
11 | public override IEnumerable<TableDefinition> TableDefinitions => VSTableDefinitions.All; | 11 | public override IReadOnlyCollection<TableDefinition> TableDefinitions => VSTableDefinitions.All; |
12 | } | 12 | } |
13 | } | 13 | } |