Well I have a solution with 2 projects: One of them is a winforms project, the other one is a console application. With each execution, winforms project starts a process with console application .exe file as argument.
The problem is: The console project - when executed in a cmd.exe - loads all necessary assemblies correctly, but when executes through the winforms project, fails to load certain assembly and tries to resolve it, though the correct assembly is located besides the .exe file. TO be more specific, when console application executes alone, loads Newtonsoft.Json.dll ver 8.0 successfully, which it has been compiled against, but when it launched through winforms application, it fails to resolve the assembly and tries to load ver 6.0 and fails.
I'm using VS 2015 and Newtonsoft.Json.dll reference is manged by Nuget.
Can anybody please help me what is wrong here?