将在运行时编译的程序集装入不同的AppDomain失败

时间:2015-11-26 16:21:57

标签: c# .net appdomain

我尝试将在运行时编译的DLL加载到不同的AppDomain中。这对于s​​ystem.dll工作同样不起作用。这是我的测试代码:

string sourceCode = "using System;\r\n" +
                     "[Serializable]\r\n" +
                     "public class Program1{\r\n" +
                     "   public static void Main1(){\r\n" +
                     "     int i = 100;\r\n" +
                     "     i++;" + 
                     "   }\r\n" +
                     "}";

CSharpCodeProvider provider = new CSharpCodeProvider();
CompilerParameters parameters = new CompilerParameters();
Assembly[] assembliesOfCurrentDomain = AppDomain.CurrentDomain.GetAssemblies();//this.CompilerResults.CompiledAssembly.GetReferencedAssemblies();

for (int runAssembliesInCurrDomain = 0; runAssembliesInCurrDomain < assembliesOfCurrentDomain.Length; runAssembliesInCurrDomain++)
{
    try
    {
        parameters.ReferencedAssemblies.Add(assembliesOfCurrentDomain[runAssembliesInCurrDomain].Location);
    }
    catch
    {
    }
}

// True - memory generation, false - external file generation
parameters.GenerateInMemory = false;
parameters.OutputAssembly = "D:\\temp\\123.dll";
parameters.IncludeDebugInformation = true;
parameters.ReferencedAssemblies.Add(Assembly.GetEntryAssembly().Location);

// True - exe file generation, false - dll file generation
parameters.GenerateExecutable = false;
parameters.TreatWarningsAsErrors = true;

CompilerResults results = provider.CompileAssemblyFromSource(parameters, sourceCode);

Assembly own = Assembly.LoadFrom("D:\\temp\\123.dll");
Assembly system = Assembly.LoadWithPartialName("System");

AppDomainSetup appDomainSetup = new AppDomainSetup()
{
    PrivateBinPath = @"D:\\temp"
};

AppDomain domain = AppDomain.CreateDomain("hello", AppDomain.CurrentDomain.Evidence, appDomainSetup);
domain.Load(system.GetName());               // works
AppDomain.CurrentDomain.Load(own.GetName()); // works
domain.Load(own.GetName());                  // works not

我得到一个FileNotFoundException,其中包含以下&#34; FusionLog&#34;

=== Zustandsinformationen vor Bindung ===
LOG: Benutzer = LIGHTTRANS2\schoening
LOG: DisplayName = 123, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
 (Fully-specified)
LOG: Appbase = file:///D:/schoening/Projekte_VL/Testprojekte/Compileing/WindowsFormsApplication1/bin/x64/Debug/
LOG: Ursprünglicher PrivatePath = NULL
Aufruf von Assembly : (Unknown).
===
LOG: Diese Bindung startet im default-Load-Kontext.
LOG: Die Anwendungskonfigurationsdatei wird verwendet: D:\schoening\Projekte_VL\Testprojekte\Compileing\WindowsFormsApplication1\bin\x64\Debug\WindowsFormsApplication1.vshost.exe.config
LOG: Die Computerkonfigurationsdatei von C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\machine.config wird verwendet.
LOG: Die Richtlinie wird derzeit nicht auf den Verweis angewendet (private, benutzerdefinierte, teilweise oder pfadbasierte Assemblybindung)
LOG: Download von neuem URL file:///D:/schoening/Projekte_VL/Testprojekte/Compileing/WindowsFormsApplication1/bin/x64/Debug/123.DLL.
LOG: Download von neuem URL file:///D:/schoening/Projekte_VL/Testprojekte/Compileing/WindowsFormsApplication1/bin/x64/Debug/123/123.DLL.
LOG: Download von neuem URL file:///D:/schoening/Projekte_VL/Testprojekte/Compileing/WindowsFormsApplication1/bin/x64/Debug/123.EXE.
LOG: Download von neuem URL file:///D:/schoening/Projekte_VL/Testprojekte/Compileing/WindowsFormsApplication1/bin/x64/Debug/123/123.EXE.

很抱歉这是德语,明天我会尝试发布英文版。 任何想法是什么两个组件之间的区别?

编译DLL工作。如果我在Assembly own = Assembly.LoadFrom("D:\\temp\\123.dll")行之前注释掉所有内容并使用上一次运行中编译的DLL,我会遇到同样的问题。

修改 根据建议,我尝试了以下无效的方法。

 Assembly own = Assembly.LoadFrom("D:\\temp\\123.dll");

 AppDomainSetup appDomainSetup = new AppDomainSetup() {
     PrivateBinPath = @"D:\\temp"
 };

 //FileStream fs = own.GetFiles(true)[0]; // does not work either
 FileStream fs = new FileStream("D:\\temp\\123.dll", FileMode.Open, FileAccess.Read, FileShare.Read);
 byte[] rawAssembly = new byte[fs.Length];
 fs.Read(rawAssembly, 0, (int)fs.Length);

 AppDomain domain = AppDomain.CreateDomain("hello", AppDomain.CurrentDomain.Evidence, appDomainSetup);
 domain.Load(rawAssembly);  

1 个答案:

答案 0 :(得分:0)

程序集名称不包含程序集的完整路径 - CLR无法找到“临时”程序集。如果要将特定程序集文件加载到AppDomain,则必须使用byte[]重载。