I'm not able to execute code in another application domain in Linqpad:
void Main()
{
AppDomain.CreateDomain("AD").DoCallBack(() => { Console.WriteLine("Test"); });
}
I get a different file not found exception each time I execute the code:
Could not load file or assembly 'query_gclnfu, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.
Could not load file or assembly 'query_blixbs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.
I'm clueless...