Hello, I am using the .Net FB API to create some custom actions. It works quite well, but the restiction that the assembly has to be in Assembly directory is really anoying since I have to copy the file and all its dependencies manually after each change. Is there a way to supply a full path of assebmly or change the search path in FB?
No, this is a restriction of the .NET CLR, it can only load assemblies from the same directory as the application, or a sub directory of it (and then only if you tell the CLR to, which we do), or from the GAC.
We use the CLR Hosting api’s, there is not Assembly.LoadFrom method. We have tried the various methods for loading assemblies and none of them would allow us to do what you are asking.