vote up 0 vote down star

I understand that ClickOnce applications can update automatically. However, the options offered by Microsoft are not what I am looking for.

If I check the version before the application starts, the startup is slower.

If I chek the version after the application starts, I don't know than a new version is available until the next startup.

I am looking for a boolean function to check if a new version is available. This would enable me to suggest to the user to restart the application.

flag

51% accept rate

1 Answer

vote up 3 vote down check
using System.Deployment.Application;

public bool IsUpdateAvailable()
{
    if (!ApplicationDeployment.IsNetworkDeployed) return false;

    return ApplicationDeployment.CurrentDeployment.CheckForUpdate();         
}

Of course, you might want to make this feature accessible via a button and wrap some UI around it, like this.

link|flag
+1 interesting blog post as well – SnOrfus Oct 2 at 18:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.