summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services/MefBootstrapper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/MefBootstrapper.cs')
-rw-r--r--win/CS/HandBrakeWPF/Services/MefBootstrapper.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/win/CS/HandBrakeWPF/Services/MefBootstrapper.cs b/win/CS/HandBrakeWPF/Services/MefBootstrapper.cs
deleted file mode 100644
index bd05356c0..000000000
--- a/win/CS/HandBrakeWPF/Services/MefBootstrapper.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace HandBrakeWPF.Services
-{
- using System.ComponentModel.Composition.Hosting;
- using System.Linq;
-
- using Caliburn.Core.InversionOfControl;
- using Caliburn.MEF;
- using Caliburn.PresentationFramework.ApplicationModel;
-
- using HandBrakeWPF.ViewModels.Interfaces;
-
- public class MefBootstrapper : Bootstrapper<IMainViewModel>
- {
- protected override IServiceLocator CreateContainer()
- {
- var container = new CompositionContainer(new AggregateCatalog(SelectAssemblies().Select(x => new AssemblyCatalog(x))));
-
- return new MEFAdapter(container);
- }
- }
-} \ No newline at end of file