2

Can anyone point me to any useful examples of an application framework being built using the newly released Enterprise Library 5?

I have previously used v4.1 and after downloading the source for v5 and building - I'm not understanding how to integrate it with a WPF app - i.e. there doesn't appear to be any UnityBootstrapper class.

Thanks, Jason

Jason
  • 223
  • 3
  • 9

1 Answers1

1

i.e. there doesn't appear to be any UnityBootstrapper class.

If the problem is that you can't find UnityBootstrapper, you can find it in the UnityExtensions Dll (Microsoft.Practices.Composite.UnityExtensions.dll). It's been moved from the Prism dll because of the introduction of MEF.

You can also use the MefBootstrapper, from Microsoft.Practices.Prism.MefExtensions.dll.

halfer
  • 19,824
  • 17
  • 99
  • 186
Felix
  • 1,034
  • 1
  • 9
  • 29