using Prism.Ioc; using System.Windows; namespace ExampleCore { /// /// Interaction logic for App.xaml /// public partial class App { protected override void RegisterTypes(IContainerRegistry containerRegistry) { //nothing } protected override Window CreateShell() => Container.Resolve(); } }