Я компилирую динамическую сборку во время выполнения. Это должно ссылаться на другую DLL. Все работает хорошо, пока я устанавливаю OutputAssembly в моих CompilerParameters. Но как только я установлю GenerateInMemory = true; не получается:
var compilerParameters = new CompilerParameters();
if( compileInMemory )
compilerParameters.GenerateInMemory = true;
else
compilerParameters.OutputAssembly = "<my_dynamic_dll_path>";
compilerParameters.ReferencedAssemblies.Add( "<other_dll_path>" );
var compilerResults = new CSharpCodeProvider().CompileAssemblyFromDom( compilerParameters, codeCompileUnit );
// Here: compilerResults.Errors.HasErrors == false
foreach( var type in compilerResults.CompiledAssembly.GetTypes() )
{
// Exception:
// Unable to load one or more of the requested types.
// Retrieve the LoaderExceptions property for more information.
}
Исключения Loader указывают, что не удалось найти "other_dll". Почему он работает, пока я не компилирую в памяти и что мне нужно сделать, чтобы он работал в памяти?