Skip to content

Commit 9716193

Browse files
committed
Fix VBEInteraction registration
1 parent 3e2479e commit 9716193

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Rubberduck.Main/Root/RubberduckIoCInstaller.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ public void Install(IWindsorContainer container, IConfigurationStore store)
123123

124124
container.Register(Component.For<TestExplorerModel>()
125125
.LifestyleSingleton());
126-
container.Register(Component.For<VBEInteraction>().LifestyleSingleton());
126+
container.Register(Component.For<IVBEInteraction>()
127+
.ImplementedBy<VBEInteraction>()
128+
.LifestyleSingleton());
127129

128130
RegisterRefactoringDialogs(container);
129131

0 commit comments

Comments
 (0)