I have a .net dll that requires msvcp110.dll
to run. When I use my .net dll in another app the app gives dependency errors. However, when I set the output path of my app to the same folder that contains msvcp110.dll
it runs.
Is there some way I can reference msvcp110.dll
in my .net dll such that consumers of my dll only have to add a reference to it for their app to run?
Thanks!