show/hide this revision's text 2 added 55 characters in body

I guess it is possible to leave your views in the plug-in projects.

That's my idea: you need a ViewEngine that would call the plugin (probably through an interface) and request the view (IView). The plugin would then instantiate the view not through its url (as an ordinary ViewEngine does - /Views/Shared/View.asp) but through reflection and the its name of the view )for example via reflection or DI/IoC container).

The returning of the view in the plugin might me even hardcoded (as an example)simple example follows):

public IView GetView(string viewName)
{
    switch (viewName)
    {
        case "Namespace.View1":
            return new View1();
        case "Namespace.View2":
            return new View2();
        ...
    }
}

...this was just an idea but I hope it could work or just be a good inspiration.

show/hide this revision's text 1

I guess it is possible to leave your views in the plug-in projects.

That's my idea: you need a ViewEngine that would call the plugin (probably through an interface) and request the view (IView). The plugin would then instantiate the view not through its url (as an ordinary ViewEngine does - /Views/Shared/View.asp) but through reflection and the name of the view.

The returning of the view in the plugin might me even hardcoded (as an example):

public IView GetView(string viewName)
{
    switch (viewName)
    {
        case "Namespace.View1":
            return new View1();
        case "Namespace.View2":
            return new View2();
    }
}

...this was just an idea but I hope it could work or just be a good inspiration.