Is is possible to launch a Prism v4 application, skip the Shell initialization/creation/display, and display a specific module's view instead?
For example, suppose I have a Prism app called app.exe. It has a Window class (Shell) that contains the regions for the "full view" of my application.
I want to launch app.exe with a parameter, like this: app.exe /view:MyView
When app.exe launches, I don't want to see the "full view" of my app with MyView displayed within a region of the Shell. I want to go Shell-less! I only want to see MyView displayed in its own window (like a popup) without the Shell being visible.
If I can skip creating the Shell altogether, even better.
Help!