1

我发现了与此类似的问题,但还没有找到专门解决我的问题的东西。

我有一些代码可以通过System.CodeDom.Compiler. 这很重要,因为我希望以后能够为不同的工作簿“插入”不同的编辑指令。

使用 Visual Studio 中的 References>Add... 将 Microsoft.Office.Interop.Excel.Dll 的引用添加到我的项目中,并且我使用.ReferencedAssemblies.Add如下方式为 CodeDom 编译器添加了 excel dll 的引用:

CSharpCodeProvider provider = new CSharpCodeProvider(providerOptions);

CompilerParameters compilerParams = new CompilerParameters();
compilerParams.GenerateInMemory = true;
compilerParams.GenerateExecutable = false;
compilerParams.ReferencedAssemblies.Add("System.Windows.Forms.Dll");
compilerParams.ReferencedAssemblies.Add("Microsoft.Office.Interop.Excel.Dll");

但不幸的是,出现了这个错误:

{错误 CS0006:找不到元数据文件“Microsoft.Office.Interop.Excel.Dll”}

有什么简单的方法可以告诉 CodeDom 编译器找到这个 dll 吗?

我已经compilerParams.ReferencedAssemblies.Add(typeof(Microsoft.Office.Interop.Excel.Application).Assembly.Location);按照其他地方的建议进行了尝试,但这仅指向已编译的程序 exe,而不是所需的 dll。

谢谢,乔。

4

1 回答 1

1

这可能不是答案,但对于评论来说太多了,并且可以作为“解决方法”提供帮助。

我设法加载不属于托管程序集的 System.Data.dll。我手动将它放在执行的“bin”文件夹中,只是为了测试。我的错误很明显,我使用的是:

String pathToDll = System.Reflection.Assembly.GetExecutingAssembly().CodeBase;

获取该 dll 的基本目录。但我有一个 uri (file:///C:/...)。一旦解析为“C:\ ...”一切顺利。

由于找不到您的 dll,您可以编辑该引用的属性并设置“CopyLocal = true”,以便 dll 最终与 .exe 位于相同的路径中。之后您应该能够加载它:

String pathAndFile = System.Reflection.Assembly.GetExecutingAssembly().CodeBase;    
pathAndFile = Path.GetDirectoryName(pathAndFile);
Uri uri = new Uri(pathAndFile);
pathAndFile = uri.LocalPath + "\\" + "Microsoft.Office.Interop.Excel.Dll";
compilerParams.ReferencedAssemblies.Add(pathAndFile);

另外,看看这段代码,它应该从宿主程序集中加载所有内容。(警告:您不能在同一个 AppDomain 中两次加载单个程序集)

var assemblies = AppDomain.CurrentDomain
                       .GetAssemblies()
                       .Where(a => !a.IsDynamic)
                       .Where(a => !parameters.ReferencedAssemblies.Contains(a.Location))
                       .Select(a => a.Location);

parameters.ReferencedAssemblies.AddRange(assemblies.ToArray());

据我所读,这两个教程有点老(贬义的代码),但帮助我更多地理解了事情:

https://west-wind.com/presentations/DynamicCode/DynamicCode.htm https://weblog.west-wind.com/posts/2016/Dec/12/Loading-NET-Assemblies-out-of-Seperate-Folders

于 2018-09-11T15:19:27.483 回答