Context: A Visual Studio solution with 2 assemblies, Cs and Cpp.
- Cs is a C# / .net45 dll
- Cpp is a C++/Cli dll, a C++ dll compiled with /clr.
I have some dependencies that are pure C# projects from nuget.org. I use the original packages provided by the authors. Adding them to the Cs project works fine, but not to Cpp.
How can I add the C# package to the C++ project?
Since it's C++/Cli, I can easily use .net objects, and I use e.g. in the C++ library stuff from the C# library. But somehow nuget only allows me to select C# projects to add a C# dependency to, not C++ /clr ones.