I am working on a large click-once application (150MB, >200 DLLs) and as part of the interative debugging process I would like to update just 1 DLL and relaunch the application without having to rebuild and redeploy the entire application.
Is that possible? If so... how?
Question Clarification: 9/26/2009
I know that it is possible to manually patch DLLs on the client after it has downloaded the entire application and then launch the client .EXE directly from the local cache folder. That's not the point. I want to know how to change/add a DLL on the server and have all clients get the new DLL the next time they launch. I am looking for a "copy the DLL to this folder and edit this text file" kind of answer if possible. I specifically do NOT want to have rebuild or redeploy the click-once install on the server... just patch it by hand with a single DLL that I compiled in the IDE.