Looking for recomendation to show release notes in ClickOnce applications

守給你的承諾、 提交于 2019-11-29 14:37:48
codeConcussion

What you are suggesting sounds plausible. However, I would try keep it as simple as possible...

  • An HTML file of the release notes published to your web server.
  • Show the users the release notes through their browser... System.Diagnostics.Process.Start(relaseNotesUrl);
RobinDotNet

I agree with codeConcussion. You can also use ApplicationDeployment.IsFirstRun to tell if the user has installed a new version. It's true after an update or after the 1st installation. But since you're doing the updates programmatically, you can probably just pop up the web browser at that point.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!