This may be a duplicate question but since I didn't find correct solution so I'm posting it here.
I would like to consume c# nuget package (containing multiple dlls) in managed cpp in vs2019. I'm hearing mixed answers on directly using nuget package in c++/clr or creating a c# project and including the nuget package in this project and then writing a wrapper on top of this. Option one sounds good but i do not know how to do, not enough information on web. Option two is also doable but tedious task when we have more than 20 dlls.
Could you guys suggest what should be the best approach to use c# nuget package in managed cpp in vs2019?