I have C # wincontrol which depends on a bunch of unmanaged C ++ dlls.
dotnetctrl.dll
+
+--myliba.dll
+
+--mylibb.dll
Is there any way to enable these mylib [a | b] .dll when deploying dotnetctrl.dll? those. when I add a dotnetctrl reference in a project, is there a way to make mylib libraries available on the right path just like a .NET assembly?
source
share