WPF ClickOnce installs, but nothing happens

clickoncewpf

Wondered if this has ever happened to anyone out there. I have a WPF application that I publish using ClickOnce.

When the ClickOnce link is reached I click "Run" and the app is installed on my machine. However, when I click the application from the start menu, it checks for updates, then does nothing.

Am I missing a setting?

Best Answer

It sounds like you the application is exiting on it's own after startup. Either by means of explicitly exiting or because of an unhanded exception.

Have you tried attaching a debugger and seeing what is happening?

Related Topic