Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use unity (2.0) to resolve my dependencies in a way so that i can configure policy injection (policies, matching rules and call handlers) in the .config file.

Or an other way to put it; i want my resolved objects to be "policy enabled", so that i can add and change to policies in config without have to recompile.

Any ideas on how to do that?

share|improve this question

1 Answer

OK - I also posted in the Unity-communitysite on CodePlex (http://unity.codeplex.com/Thread/View.aspx?ThreadId=215690) and got an answer there.

The trick is to add the EnterpriseLibraryCoreExtension to your container when you construct it. Like this:

_container.AddNewExtension<EnterpriseLibraryCoreExtension>();

This will pick up the configuration for your appdomains (app.config or web.config).

And that will give me the behavior I want!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.