c# - Using different version of DLL -


this question has answer here:

i have problem third party libraries.

the main project using 1 of third party library has dependency; old version of newtonsoft.

i've created new project using third party library required newtonsoft newer version. tested functions , works fine.

but once call in main project, got errors

"additional information: not load file or assembly 'newtonsoft.json, version=7.0.0.0"

i cannot update older version in main project & might have conflicts.

how can use 2 different versions of same dll in main project?


Comments