diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wixext/SqlExtensionFactory.cs | 2 | ||||
-rw-r--r-- | src/wixext/SqlWindowsInstallerBackendExtension.cs | 2 |
2 files changed, 2 insertions, 2 deletions
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 | } |