Castle Windsor
public partial class App : Application
{
public App()
{
var bootstrapper = new WindsorApplicationBootstrapper<MainView>();
}
}[Export( typeof( IWindsorInstaller ) )]
public class DefaultInstaller : IWindsorInstaller
{
public void Install( IWindsorContainer container, IConfigurationStore store )
{
//register your components here
}
}Last updated