Interop Assembly
What is the correct procedure to include/refer to an interop assembly in a .NET project?
Here I have an assembly (dll) from the bin of a Windows Application (C#.NET) which I would like to include in an ASP.NET_C# application. I have added reference to the same in the project but upon build (F5), I get an Error in the Task List that I might have missed a using directive or an assembly reference. I have also included the assembly in the Code-Behind of the page with the 'using' keyword but the system still gives the same error.
Your suggestions are most valuable.
Sandip PatilPosted Nov 13, 2007, 11:30 AM
Hi,
Please try below step,
When adding reference to project, click on properties of reference & set property "Copt Local" to True & Rebuild complete solution.
Thanks
jebasinghPosted Jul 19, 2007, 5:12 AM