当我的进程尝试加载此程序集时,我收到 System.IO.FileException:System.Diagnostics.EventLog Version=8.0.0 PublicKey={identical to the one that's in the bin folder}。当我执行 AppDom 时...
当我的进程尝试加载该程序集时, System.IO.FileException
出现以下错误 System.Diagnostics.EventLog Version=8.0.0 PublicKey={identical to the one that's in the bin folder}
.
当我这样做时, AppDomain.CurrentDomain.GetAssemblies()
它只在我直接运行时出现在程序集列表中,而不是通过 process.start() 完成时。
执行 process.start() 的应用程序仅导入一个项目(正在启动的项目),以便其构建输出中包含可执行文件。然后它调用该可执行文件的路径。它还具有相同的配置 .csproj
:DebugType:Full,Optimize:False
我尝试过手动 Assembly.Load(),我尝试过保存 nameof(System....Logs)。
当将调试器附加到启动的进程并进行评估时, new System.Diagnostics.EventLog()
我们得到:
The type name 'EventLog' could not be found in the namespace 'System.Diagnostics'. This type has been forwarded to assembly 'System.Diagnostics.EventLog, Version=0.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' Consider adding a reference to that assembly.
如何在使用 process.start() 时加载该程序集?