diff options
Diffstat (limited to 'src')
8 files changed, 11 insertions, 11 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs index a7da13bb..020f58b3 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs | |||
@@ -22,7 +22,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
22 | // As outlined in RFC 4122, this is our namespace for generating name-based (version 3) UUIDs. | 22 | // As outlined in RFC 4122, this is our namespace for generating name-based (version 3) UUIDs. |
23 | internal static readonly Guid WixComponentGuidNamespace = new Guid("{3064E5C6-FB63-4FE9-AC49-E446A792EFA5}"); | 23 | internal static readonly Guid WixComponentGuidNamespace = new Guid("{3064E5C6-FB63-4FE9-AC49-E446A792EFA5}"); |
24 | 24 | ||
25 | public BindDatabaseCommand(IBindContext context, IEnumerable<IWindowsInstallerBackendExtension> backendExtension, Validator validator) | 25 | public BindDatabaseCommand(IBindContext context, IEnumerable<IWindowsInstallerBackendBinderExtension> backendExtension, Validator validator) |
26 | { | 26 | { |
27 | this.Messaging = context.ServiceProvider.GetService<IMessaging>(); | 27 | this.Messaging = context.ServiceProvider.GetService<IMessaging>(); |
28 | 28 | ||
@@ -66,7 +66,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
66 | 66 | ||
67 | public bool DeltaBinaryPatch { get; set; } | 67 | public bool DeltaBinaryPatch { get; set; } |
68 | 68 | ||
69 | private IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { get; } | 69 | private IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { get; } |
70 | 70 | ||
71 | private Intermediate Intermediate { get; } | 71 | private Intermediate Intermediate { get; } |
72 | 72 | ||
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs index 541dacf8..2a717ec5 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs | |||
@@ -14,7 +14,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
14 | 14 | ||
15 | public class CabinetResolver | 15 | public class CabinetResolver |
16 | { | 16 | { |
17 | public CabinetResolver(string cabCachePath, IEnumerable<IWindowsInstallerBackendExtension> backendExtensions) | 17 | public CabinetResolver(string cabCachePath, IEnumerable<IWindowsInstallerBackendBinderExtension> backendExtensions) |
18 | { | 18 | { |
19 | this.CabCachePath = cabCachePath; | 19 | this.CabCachePath = cabCachePath; |
20 | 20 | ||
@@ -23,7 +23,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
23 | 23 | ||
24 | private string CabCachePath { get; } | 24 | private string CabCachePath { get; } |
25 | 25 | ||
26 | private IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { get; } | 26 | private IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { get; } |
27 | 27 | ||
28 | public ResolvedCabinet ResolveCabinet(string cabinetPath, IEnumerable<FileFacade> fileFacades) | 28 | public ResolvedCabinet ResolveCabinet(string cabinetPath, IEnumerable<FileFacade> fileFacades) |
29 | { | 29 | { |
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs index a85312c4..88be831e 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs | |||
@@ -64,7 +64,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
64 | /// </summary> | 64 | /// </summary> |
65 | public CompressionLevel? DefaultCompressionLevel { private get; set; } | 65 | public CompressionLevel? DefaultCompressionLevel { private get; set; } |
66 | 66 | ||
67 | public IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { private get; set; } | 67 | public IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { private get; set; } |
68 | 68 | ||
69 | public Output Output { private get; set; } | 69 | public Output Output { private get; set; } |
70 | 70 | ||
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs index ac770823..4d5d278b 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | |||
@@ -14,14 +14,14 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
14 | 14 | ||
15 | internal class CreateOutputFromIRCommand | 15 | internal class CreateOutputFromIRCommand |
16 | { | 16 | { |
17 | public CreateOutputFromIRCommand(IntermediateSection section, TableDefinitionCollection tableDefinitions, IEnumerable<IWindowsInstallerBackendExtension> backendExtensions) | 17 | public CreateOutputFromIRCommand(IntermediateSection section, TableDefinitionCollection tableDefinitions, IEnumerable<IWindowsInstallerBackendBinderExtension> backendExtensions) |
18 | { | 18 | { |
19 | this.Section = section; | 19 | this.Section = section; |
20 | this.TableDefinitions = tableDefinitions; | 20 | this.TableDefinitions = tableDefinitions; |
21 | this.BackendExtensions = backendExtensions; | 21 | this.BackendExtensions = backendExtensions; |
22 | } | 22 | } |
23 | 23 | ||
24 | private IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { get; } | 24 | private IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { get; } |
25 | 25 | ||
26 | private TableDefinitionCollection TableDefinitions { get; } | 26 | private TableDefinitionCollection TableDefinitions { get; } |
27 | 27 | ||
diff --git a/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs b/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs index 8b63ae9a..579977fe 100644 --- a/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs +++ b/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs | |||
@@ -17,7 +17,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
17 | { | 17 | { |
18 | var extensionManager = context.ServiceProvider.GetService<IExtensionManager>(); | 18 | var extensionManager = context.ServiceProvider.GetService<IExtensionManager>(); |
19 | 19 | ||
20 | var backendExtensions = extensionManager.Create<IWindowsInstallerBackendExtension>(); | 20 | var backendExtensions = extensionManager.Create<IWindowsInstallerBackendBinderExtension>(); |
21 | 21 | ||
22 | foreach (var extension in backendExtensions) | 22 | foreach (var extension in backendExtensions) |
23 | { | 23 | { |
diff --git a/src/WixToolset.Core.WindowsInstaller/MsmBackend.cs b/src/WixToolset.Core.WindowsInstaller/MsmBackend.cs index c12e6c79..de9c4162 100644 --- a/src/WixToolset.Core.WindowsInstaller/MsmBackend.cs +++ b/src/WixToolset.Core.WindowsInstaller/MsmBackend.cs | |||
@@ -16,7 +16,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
16 | { | 16 | { |
17 | var extensionManager = context.ServiceProvider.GetService<IExtensionManager>(); | 17 | var extensionManager = context.ServiceProvider.GetService<IExtensionManager>(); |
18 | 18 | ||
19 | var backendExtensions = extensionManager.Create<IWindowsInstallerBackendExtension>(); | 19 | var backendExtensions = extensionManager.Create<IWindowsInstallerBackendBinderExtension>(); |
20 | 20 | ||
21 | foreach (var extension in backendExtensions) | 21 | foreach (var extension in backendExtensions) |
22 | { | 22 | { |
diff --git a/src/WixToolset.Core/WixToolsetServiceProvider.cs b/src/WixToolset.Core/WixToolsetServiceProvider.cs index 7216ae2a..74c886d6 100644 --- a/src/WixToolset.Core/WixToolsetServiceProvider.cs +++ b/src/WixToolset.Core/WixToolsetServiceProvider.cs | |||
@@ -18,7 +18,7 @@ namespace WixToolset.Core | |||
18 | this.Singletons = new Dictionary<Type, object>(); | 18 | this.Singletons = new Dictionary<Type, object>(); |
19 | 19 | ||
20 | // Singletons. | 20 | // Singletons. |
21 | this.AddService((provider, singletons) => AddSingleton<IExtensionManager>(singletons, new ExtensionManager())); | 21 | this.AddService((provider, singletons) => AddSingleton<IExtensionManager>(singletons, new ExtensionManager(provider))); |
22 | this.AddService((provider, singletons) => AddSingleton<IMessaging>(singletons, new Messaging())); | 22 | this.AddService((provider, singletons) => AddSingleton<IMessaging>(singletons, new Messaging())); |
23 | this.AddService((provider, singletons) => AddSingleton<ITupleDefinitionCreator>(singletons, new TupleDefinitionCreator(provider))); | 23 | this.AddService((provider, singletons) => AddSingleton<ITupleDefinitionCreator>(singletons, new TupleDefinitionCreator(provider))); |
24 | this.AddService((provider, singletons) => AddSingleton<IParseHelper>(singletons, new ParseHelper(provider))); | 24 | this.AddService((provider, singletons) => AddSingleton<IParseHelper>(singletons, new ParseHelper(provider))); |
diff --git a/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs b/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs index f00a5102..c5aeadba 100644 --- a/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs +++ b/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs | |||
@@ -6,7 +6,7 @@ namespace Example.Extension | |||
6 | using WixToolset.Data.WindowsInstaller; | 6 | using WixToolset.Data.WindowsInstaller; |
7 | using WixToolset.Extensibility; | 7 | using WixToolset.Extensibility; |
8 | 8 | ||
9 | internal class ExampleWindowsInstallerBackendExtension : BaseWindowsInstallerBackendExtension | 9 | internal class ExampleWindowsInstallerBackendExtension : BaseWindowsInstallerBackendBinderExtension |
10 | { | 10 | { |
11 | public override bool TryAddTupleToOutput(IntermediateTuple tuple, Output output) | 11 | public override bool TryAddTupleToOutput(IntermediateTuple tuple, Output output) |
12 | { | 12 | { |