本文介绍了Visual Studio版本依赖的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有2个VC ++项目编译成DLL( projA , projB )。这两个项目都依赖于其他DLL。 projA 取决于 depA1.dll 和 depA2.dll - 所有这些dll都是在VS2008中编译的。 projB 取决于 projA , depB1.dll 和 depB2.dll 并在VS2012中编译( projA 除外)使用VS2008)。 视觉工作室版本什么时候成为依赖项,所以我需要使用相同版本的VS构建所有dll? 如果在 projB 我使用LoadLibrary加载 projA 而不是链接它,这是否重要? 谢谢。Hi,I have 2 VC++ projects compiling into DLLs (projA, projB). Both projects have dependencies on other DLLs.projA depends on depA1.dll and depA2.dll - all those dlls are compiled in VS2008.projB depends on projA, depB1.dll and depB2.dll and are compiled in VS2012 (except projA which was compiled with VS2008).When does the visual studio version become a dependency by itself, so I need to build all dlls using the same version of VS?Does this matter if in projB i load projA using LoadLibrary instead of linking with it?Thanks.推荐答案 这篇关于Visual Studio版本依赖的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-16 07:27