Hi everyone,
I'm encountering a versioning issue with the ExcelDna.Integration DLL after installing the ExcelDna.AddIn NuGet package (v1.8.0).
Project Setup:Target Framework: .NET Framework 4.8
NuGet Package: ExcelDna.AddIn v1.8.0
ExcelDna.Integration.dll Path: packages\ExcelDna.Integration.1.8.0\lib\net452\ExcelDna.Integration.dll
Although I’m using version 1.8.0 of the package, the referenced ExcelDna.Integration.dll has an internal AssemblyVersion of 1.1.0.0 (confirmed in the file properties and through ILSpy).
As a result, the compiler throws an error when I try to use:
It appears the method doesn’t exist in the referenced version (or is inaccessible).
My Questions:Is this version mismatch expected?
Is there a different reference or binding redirect I should use?
What’s the recommended way to get access to the latest ExcelAsyncUtil APIs in this setup?
Any clarification or guidance would be much appreciated. Thank you!