FB6 +.Net Custom Action => change assembly path?

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?

Best regards,
quirrel

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.

ok, I undestand the issue but what about using Assembly.LoadFrom?

Reading http://geekswithblogs.net/akraus1/articles/74319.aspx and http://www.codeproject.com/KB/vb/Lo...Games.aspx it seems that you could load the assembly from any place with this method.
Is it possibly to use a custom subdirectory?

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.

so, is it possible to use an own subdirectory for the custom action, e.g. Assembly\2.0\mayActionDir\assembly.dll?