ClickOnce is a great deployment model for many Windows applications built with the .NET Framework. Too bad it isn't supported for C++, VB 6, or other technologies. Or is it...
Surprisingly, you can deploy your unmanaged apps with ClickOnce. You just need a tiny .NET app to get it started.
Here's how it works:
static void Main(string[] args) { try { Process.Start( "TheRealApp.exe" ); } catch ( Exception x ) { string msg = "Error launch application:\n\n" + x; string cap = "Error Launching Application"; MessageBox.Show( msg, cap, MessageBoxButtons.OK, MessageBoxIcon.Error ); } }
Posted in DevelopMentor | Talks | Visual Studio
A blog by Michael Kennedy
About: Michael is an instructor for DevelopMentor, a .NET enthusiast, an agile pioneer, an entrepreneur, a father of three girls, a husband, a student, and a teacher.
Explore Related Content
Concepts >> azure - Workflow - RESTful - Unit Testing - web - WCF - ASP.Net - MVC - LINQ
Tools >> Visual Studio ClickOnce IIS
Type >> Screencast - Tools - Article - How To - Course
@DevelopMentor_ @mkennedy @andrewclymer @bmaso @coloringinguy @danamiga @ellisteam1 @georgeshep @isidore_us @jason_diamond @markblomsma @marksm @mauricedb @mscottreed @pierrenallet @richardblewett @tonysneed @wallacekelly
Sign In