Is it possible to deploy a native Delphi application with ClickOnce without a stub C# exe that would be used to launch the Delphi application?
The same question applies to VB6, C++ and other native Windows applications.
|
2
|
Is it possible to deploy a native Delphi application with ClickOnce without a stub C# exe that would be used to launch the Delphi application? The same question applies to VB6, C++ and other native Windows applications.
|
|||
|
|
|
|
No, the entry point to your app needs to be managed code. This is from a blog post by Brian Noyes, one of the main authorites on ClickOnce and author of Smart Client Deployment with ClickOnce.
The accepted workaround seems to be a managed code stub exe that launches the main exe. |
||
|
|
|
|
I'm not 100% sure if this can be accomplished without the stub, but this article may provide some insight: How To: ClickOnce deployment for unmanaged app with COM component in managed assembly |
||
|
|
|
|
Personally, I build my own mechanism to kick off self update process when my application timestamp is out of sync with the server. Not too difficult, but it's not a simple task. By the way, for Delphi you can use some thirdparty help: http://www.tmssoftware.com/site/wupdate.asp UPDATED: For my implementation: MyApp.EXE will run in 3 different modes
I've already been using this scheme for my application for 7 years and it works well. It could be quite painful to debug when things goes wrong since the steps involve many processes. I suggest you make a lot of trace logging to allow simpler trouble-shooting. Good Luck |
|||