Currently in my winforms application all my types are registerd in Main
method.
Am looking for solution how can i register all new types inside App.conf
?
Is that posible ?
This i currently use in my app:
[STAThread]
static void Main(string[] args)
{
UnityContainer ioc = new UnityContainer();
// This move in app.conf
ioc.RegisterType<Customer>();
ioc.RegisterType<MainWindow>();
ioc.RegisterType<IDatabase, MySqlDatabase>();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(ioc.Resolve<MainWindow>());
}
It is possible to register types inside app.config. I wrote simple console application to illustrate that:
And app.config (TheLogger class is registered as an implementation of ILogger):
For more details check this MSDN page.