Pitfalls/gotchas of ClickOnce/smart-client deployment in .NET [closed]

Here are a few that I am aware of.

  1. Can’t put an icon on the desktop. You can now.

  2. I can’t install for all users.

  3. I need to jump through hoops to move the deployment to a different server. It is not a problem if you are developing internally, and the users can see the server that you are publishing to or if you are deploying to the public web, but it is not great if you need to roll out to multiple customer sites independently.

  4. Since .NET 3.5 SP1 you do not need to sign the deployment manifest anymore which makes it much easier to move deployments to new servers.

  5. I can’t install assemblies in the GAC. You can get around this by creating regular install packages that are pre-requisites of the ClickOnce application.

Leave a Comment