How to update dependency during runtime in my .NET application?

Posted by Louis Rhys on Programmers See other posts from Programmers or by Louis Rhys
Published on 2012-10-04T01:54:40Z Indexed on 2012/10/04 3:52 UTC
Read the original article Hit count: 248

I have a server-client application. Sometimes the server is updated which requires some DLLs in the client to be updated as well (The DLLs are the dependencies of the main executable). For now, we have to close the client, manually deploy the DLLs, and then start the client again. This is kind of an inconvenience because the client is an automated application, so normally it doesn't need any user intervention.

Is it possible for this to be done automatically without restart or user intervention? Like, the client would download the latest DLL, and replace the current one?

© Programmers or respective owner

Related posts about .NET

Related posts about software-updates