开发者

Bootstrapping Dependencies (using StructureMap) in winforms

开发者 https://www.devze.com 2022-12-19 16:04 出处:网络
I am trying to keep the IoC registration off to the side just like it is done in CodeCampServer via the DependencyResolution project, so that only one project in my solution holds a reference to Struc

I am trying to keep the IoC registration off to the side just like it is done in CodeCampServer via the DependencyResolution project, so that only one project in my solution holds a reference to StructureMap.

I have implementations of interfaces in my Client/UI project which I want registered, meaning that this DependencyResolution Project needs to have a reference to my Client/UI project.

But how do I go about Bootstrapping the setup of the dependencies from within my Client/UI project without taking a reference to the DependencyResolution project to initiate the registration of the dependencies?

I have used the HttpModule method before from within an MVC application (similar to how CodeCampServer does it) but I'm trying to figure out how to do it in a WinF开发者_JAVA技巧orms app.


Cavet: I do not claim to have much experience with WinForms. I believe that the thrust of Jeremy's Build Your Own CAB series of blog posts discusses the challenge of composing testable desktop applications.

0

精彩评论

暂无评论...
验证码 换一张
取 消