AppDomainToolkit
AppDomainToolkit copied to clipboard
A toolkit for managing the complexities of .NET application domain programming.
Hi, I am using AppdomainToolKit and my code goes as follows: ``` string basePath = "C:\\Uploader\\Bin"; var setupInfo = new AppDomainSetup(); setupInfo.ApplicationName = "SomeName"; setupInfo.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory; setupInfo.PrivateBinPath = Path.Combine(basePath,...
Hi, I'm trying to use your library but I'm facing a problem. So far I've managed to load an assembly (using the method LoadFile), and inspecting the context with Visual...
Is it possible to load an assembly into `AppDomainContext` using [this ](https://msdn.microsoft.com/en-us/library/h538bck7(v=vs.110).aspx) method? LoadAssembly is accepting only a string.