I am working on a web application (.Net 4.5, C#) with Visual Studio 2012. I have multiple project as separate components so each project has its own test project. Now I want to execute all Test projects in a single solution. I have started it and added all test projects in single solution, and executed, it works. But now If in any project, there is any change happened so I need to update dll manually by Adding Reference. Is there any option to update dll in some particular location whenever it builds.
Thanks, VD

Ramesh MaruthiPosted Oct 24, 2014, 10:06 AM
Am just trying to give you an idea, so what you do is just create a new folder for the dll's and try to write some post build events in your project properties to update the dlls, when ever it builds. And now add the reference of that dll from that particular folder and set in the properties as the copy is false....
For Post build events reference :
http://stackoverflow.com/questions/11001822/copy-files-from-one-project-to-another-using-post-build-event-vs2010