views:

48

answers:

2

Hi for updating an application daily which one is better for a WPF application? clickonce or UAB? or more options? thanks of your attentions :)

+1  A: 

I wrote about it in this post on my blog a while ago.

In short:

  • ClickOnce is very nice but fairly limited, use it if you can.

  • UAB is too big and heavy weight for an updater, I don't have personal experience with it.

  • There are a lot of commercial and open source options that look better than UAB

Nir
+1  A: 

ClickOnce was intended for smart client applications, and is good for a WPF application, depending on what else is going on in it. If you need it to be installed for all users, or need to be writing to the registry during installation, it won't work.

We use it at my company, and used to put out a lot of updates. We have thousands of customers, and have had great success with ClickOnce.

RobinDotNet