Skip to content

Commit 7056510

Browse files
Sascha BaurSascha Baur
authored andcommitted
Bound ISourceControlProvider to GitProvider
1 parent df4ccec commit 7056510

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

RetailCoder.VBE/Root/RubberduckModule.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ public override void Load()
6464
Bind<Sinks>().ToSelf().InSingletonScope();
6565
Bind<App>().ToSelf().InSingletonScope();
6666
Bind<RubberduckParserState>().ToSelf().InSingletonScope();
67-
Bind<GitProvider>().ToSelf().InSingletonScope();
67+
Bind<ISourceControlProvider>().To<GitProvider>();
68+
//Bind<GitProvider>().ToSelf().InSingletonScope();
6869
Bind<TestExplorerModel>().ToSelf().InSingletonScope();
6970
Bind<IOperatingSystem>().To<WindowsOperatingSystem>().InSingletonScope();
7071

0 commit comments

Comments
 (0)