I am working on assembly project and external program is executed through the assembly program.
System.Environment.CurrentDirectory
assembly and Application.ExecutablePath
paths are different due to external application.
System.Environment.CurrentDirectory
is Assembly path.
Application.ExecutablePath
External application path.
While deserialization it throw expcetion
assembly not found
because "Application.ExecutablePath "
not having my dlls .
So i want to change use System.Environment.CurrentDirectory
path for deserialization.