Evolve
Evolve

Reputation: 9193

'Automatic Updates' and Public Versioning for .NET (desktop) application?

We're building a desktop based .Net application in C# which we want to include automatic upgrades with local desktop's polling our web server from time to time looking for updates.

What the best solution for public versioning management and also for including automatic upgrades in our Desktop .Net application?

Basically so the client installs our desktop software, say at version 15.1 and when 15.2 comes out their software is automatically updated to the latest version.

Upvotes: 2

Views: 997

Answers (3)

Anirudh Ramanathan
Anirudh Ramanathan

Reputation: 46728

.NET Application Updater Component makes it really easy to add an updater to any application. It can be easily coupled with an existing project as well. The same method of using the UAB (Updater Application Block) is used by Microsoft in ClickOnce as well.

Reference

Upvotes: 2

Khh
Khh

Reputation: 2571

In previous applications we have used ClickOnce which could be an option. Here is explained how updates are working with it.

Upvotes: 1

KV Prajapati
KV Prajapati

Reputation: 94645

I'd like to suggest you to use ClickOnce Deployment.

Upvotes: 1

Related Questions