Good afternoon,
We have our project setup where all our common classes are defined in a referenced assembly or reference project and our web application is the main project.
I have noticed the the DirectProvider only loads the API from the executing assembly
Code:
provider.Configure(System.Reflection.Assembly.GetExecutingAssembly());
Does this mean that all the [DirectAction] must be defined in the executing web app / assembly or can the action classes be defined in sub-projects / assemblies and change this method to included all the loaded assemblies (although I am not too sure if I like this either)
Thanks in advance.
Whatty