How can I make my managed NuGet package support C++/CLI projects?

后端 未结 7 1718
暗喜
暗喜 2020-12-04 14:03

I have made a NuGet package that works well when I use it from a C# project. It contains a DLL in the lib/net40 directory, and the DLL gets added as a reference

7条回答
  •  独厮守ぢ
    2020-12-04 14:33

    The installer tries to add a reference to itself in the C# startup project. Make a C# project the startup project in the solution before install. Create a dummy C# project if you do not have one

提交回复
热议问题