I am developing a very small application in WPF and I decided to use the Prism 6.0 framework after not being satisfied with Caliburn.Micro and MVVM Light Toolkit.
I want to be able to use regions in my application but I don't want to use Unity and dependency injection because it's overkill for this application.
If I want to have a Shell which is the main window with a region defined that will either show ViewA or ViewB in its one region how can I do this without using a Unity or a UnityBootstrapper? I am having trouble figuring this out since all the examples online and learning material use Unity or some other DI system.
EDIT: To clarify further: I'm mostly trying to avoid Unity/DI because it's forcing me to use Modules where this application is very small and I wouldn't benefit from Modules and it would only serve to make the project harder to understand for new eyes.