1. 程式人生 > >winform自動更新之AutoUpdater.NET

winform自動更新之AutoUpdater.NET

版權宣告:本文為博主原創文章,未經博主允許不得轉載。 https://blog.csdn.net/zhaobw831/article/details/82226291
使用AutoUpdater.NET對winform程式進行自動更新
介紹
AutoUpdater.NET是一個.NET平臺下桌面應用程式的一個自動升級類庫,開源在Github類似工具還包括微軟的ClickOnce

使用
PM> Install-Package Autoupdater.NET.Official

更新伺服器上的xml配置:

<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>2.0.0.0</version>
<url>http://127.0.0.1/downloads/Test-2.0.0.0.zip</url>
<changelog>http://127.0.0.1/changelog.html</changelog>
<mandatory>false</mandatory>
</item>
1
2
3
4
5
6
7
其中url節點表示新的程式包的地址,changelog表示更新日誌,mandatory表示是否強制更新,其他更多屬性見Github

C#中的使用:

using AutoUpdaterDotNET;

AutoUpdater.Start("http://rbsoft.org/updates/AutoUpdaterTest.xml");
1
2
3

Demo

Issue
---------------------