I have a C# project file which contain all the files(.cs files) it required to build the application. But, we need to link with a 3rd party .obj and .lib file during the build.
Any suggestion how to configure the .csproj to link the third party .lib and .obj files.
Tried to include the .lib and .obj using the following in the C# project file:
1- <Library Include=
2- <Module Include=
But, all these approaches are not linking the .obj and .lib files with the final .net executable produced.
However, if I use the csc and link directly, then it compile and link the .obj and .lib files with the final .net executable produced.
Any suggestion how to configure the .csproj to link the third party .lib and .obj files.
1