diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-20 13:09:11 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-20 13:21:35 -0700 |
commit | 2977d0ffabcd6d68790e711736d2edd1fe0cc0af (patch) | |
tree | 9799102255b9d3cdd7b90d171a5cb83609e290b8 | |
parent | 594bb035b8f27d341c982dc0754589a447b9abd6 (diff) | |
download | wix-2977d0ffabcd6d68790e711736d2edd1fe0cc0af.tar.gz wix-2977d0ffabcd6d68790e711736d2edd1fe0cc0af.tar.bz2 wix-2977d0ffabcd6d68790e711736d2edd1fe0cc0af.zip |
Integrate latest tooling
-rw-r--r-- | global.json | 2 | ||||
-rw-r--r-- | src/wixext/SqlExtensionFactory.cs | 2 | ||||
-rw-r--r-- | src/wixext/SqlWindowsInstallerBackendExtension.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/SqlExtensionFactory.cs b/src/wixext/SqlExtensionFactory.cs index e7fafed2..279106d3 100644 --- a/src/wixext/SqlExtensionFactory.cs +++ b/src/wixext/SqlExtensionFactory.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.Sql | |||
8 | 8 | ||
9 | public class SqlExtensionFactory : BaseExtensionFactory | 9 | public class SqlExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(SqlCompiler), | 13 | typeof(SqlCompiler), |
14 | typeof(SqlExtensionData), | 14 | typeof(SqlExtensionData), |
diff --git a/src/wixext/SqlWindowsInstallerBackendExtension.cs b/src/wixext/SqlWindowsInstallerBackendExtension.cs index b679e871..2ccdcc56 100644 --- a/src/wixext/SqlWindowsInstallerBackendExtension.cs +++ b/src/wixext/SqlWindowsInstallerBackendExtension.cs | |||
@@ -8,6 +8,6 @@ namespace WixToolset.Sql | |||
8 | 8 | ||
9 | public class SqlWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension | 9 | public class SqlWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension |
10 | { | 10 | { |
11 | public override IEnumerable<TableDefinition> TableDefinitions => SqlTableDefinitions.All; | 11 | public override IReadOnlyCollection<TableDefinition> TableDefinitions => SqlTableDefinitions.All; |
12 | } | 12 | } |
13 | } | 13 | } |