This commit is contained in:
Sean Hall 2021-04-20 00:15:18 -05:00
Родитель 873fc6cded
Коммит 00ae085bad
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,5 @@
{ {
"msbuild-sdks": { "msbuild-sdks": {
"WixToolset.Sdk": "4.0.0-build-0209" "WixToolset.Sdk": "4.0.0-build-0210"
} }
} }

Просмотреть файл

@ -1,4 +1,4 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Netfx namespace WixToolset.Netfx
{ {
@ -8,7 +8,7 @@ namespace WixToolset.Netfx
public class NetfxExtensionFactory : BaseExtensionFactory public class NetfxExtensionFactory : BaseExtensionFactory
{ {
protected override IEnumerable<Type> ExtensionTypes => new[] protected override IReadOnlyCollection<Type> ExtensionTypes => new[]
{ {
typeof(NetfxCompiler), typeof(NetfxCompiler),
typeof(NetfxExtensionData), typeof(NetfxExtensionData),

Просмотреть файл

@ -8,6 +8,6 @@ namespace WixToolset.Netfx
public class NetfxWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension public class NetfxWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension
{ {
public override IEnumerable<TableDefinition> TableDefinitions => NetfxTableDefinitions.All; public override IReadOnlyCollection<TableDefinition> TableDefinitions => NetfxTableDefinitions.All;
} }
} }