Hello Everyone,
I have ran into an issue while using a VC++ project reference in my aspnetcore Webapplication solution(.net Framework).Let me explain the issue.
1.Created a new aspnetcore webapplication.
2.Added a VC++ project (CLR-->ClassLibrary)
3.Added a C# Class Library project and aded VC++ project reference in the References of C#ClassLibrary.
4.Call the method in C#Classlibrary in the Main Project which in turn return a value from VC++ ClassLibrary
The solution builds with out any error ,but at run time I Get the error-"Additional information: Could not load file or assembly 'CppClassLibrary, Version=1.0.6164.19946, Culture=neutral, PublicKeyToken=null' or one of its dependencies. An attempt was made to load a program with an incorrect format."
PS. I have set my build Platform as AnyCPU for the main Project and C#LibraryProject, and for VC++ Class library it is Win32 which are all by default.
My machine is Windows 7 64 bit.
Someone please let me know how this scenario can be worked out.I We cannot get rid of VC++ references as it would be high impact change in our application suite.
A quick help is much appreciated.
Thanks In Advance,
James