I have a C# Project,which consist of multiple projects ,which are built already and I am calling it through list of dll(say it is main list of dll eg..(a.dll,p.dll,v.dll)).
One of the dll say a.dll is calling few functions existing on b.dll.(function call).The b.dll does not exist in the main list of dll...it is only called by a.dll and sometime by an other exe that is say g.exe.The exe is executed directly by passing the name of exe in other dll from main list and again exe in calling the function existed in b.dll. I have changed one file in b.dll and rebuild all dll separately and then build whole solution and .....but the changes are not reflected in output file.
a.dll----->b.dll
p.dll--->g.exe--->b.dll
here a.dll and p.dll are in the main list.
Please suggest some option which I can try out to update the output.