I am writing a C# program (.net 2.0) that needs to read excel files. I came to know that I will have to use Microsoft.Office.Interop.Excel. I downloaded O2003PIA.MSI and using 7Zip, extraced the DLLs(didn't install). Now, when I add reference to the extracted EXCELPIA.DLL, it throws the following error:
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.
I want to deploy the assemblies as private assemblies and does not want the end user to install the Redistributable. Are there any dependnecies I am missing ?
I already tried adding reference to OFFICE.DLL but it does not help either.
EDIT 1
- Is it required to install Office 2003 before using this ?
- Is there any other .net 2.0 alternative ?