How should I implement an auto-updater?

后端 未结 16 1112
名媛妹妹
名媛妹妹 2020-12-04 06:11

Many programs include an auto-updater, where the program occasionally looks online for updates, and then downloads and applies any updates that are found. Program bugs are f

16条回答
  •  时光取名叫无心
    2020-12-04 06:16

    You can write an internal module of your application to do updates. You can write an external mini application to do updates.

    Also look at .NET on-the-fly compilation technology, it makes possible to create such mini application on-the-fly on demand. For example, http://fly.sf.net/

提交回复
热议问题