|
I am working for a software house. We are developing an application which generates dll on the fly using reflection base on user changes and the dll is published on the server. When other winform clients detect the changes, this dll is downloaded to the client machine and loaded dynamically to show some winforms.
1. Is ClickOnce suitable for this kind of task?
2. Obviously we won't ship our source code with the product and this code will run in our client side. How can we build an app that can modify the manifest programmatically so that the Installed Client can detect the dll changes and update using ClickOnce? At this point, the application version is not changed but the dll to display the winform is changed.
3. We cannot use OnDemand, as the dll can be changed by any of the winclient at anytime and we need to load the dll again if there is any changes.
4. Is there anyway to override the CheckForUpdate
Thanks
Taddy.
|