How to deal with multiple versions of dependencies?

前端 未结 1 1903
迷失自我
迷失自我 2020-12-20 06:14

Hi I have a problem with a dependency hierarchy I am unsure how to solve:

alt text http://img525.imageshack.us/my.php?image=56330713it2.jpg http://img525.imageshack.

相关标签:
1条回答
  • 2020-12-20 06:41

    If you are using the classes that BaseProject returns directly within MyProject, you need to stick with the same version (1.0). But if BaseProject only uses those classes internally and does not share with MyProject, you can safely use the new version (2.0).

    Best practice: strongly name your assemblies so that the compiler can help you out.

    0 讨论(0)
提交回复
热议问题