我正在编写一个需要读取excel文件的C#程序(.net 2.0)。我知道我将不得不使用Microsoft.Office.Interop.Excel
。我下载了O2003PIA.MSI
并使用7Zip,引出了DLL(没有安装)。现在,当我添加对提取的EXCELPIA.DLL
的引用时,它会抛出以下错误:
Could not load file or assembly 'Microsoft.Office.Interop.Excel, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the file specified.
我想将程序集部署为私有程序集,并且不希望最终用户安装Redistributable。我缺少任何依赖吗?
我已经尝试添加对OFFICE.DLL
的引用,但它也没有帮助。
编辑1