Can anyone think of a good solution for getting IOC into a console application?
At the moment we are just using a static class with the following method:
public static T Resolve<T>()
{
return dependencyResolver.Resolve<T>();
}
I would like the experience to be seamless but cannot think of a way of achieving this from a console application.