AutoUpdater.Net不覆盖文件

时间:2017-12-19 03:35:02

标签: c# .net auto-update

我已经上传了我的有效xml,我可以确认新文件正在下载到用户temp目录。但是,当前文件没有被覆盖。

我添加了对AutoUpdate.Net.dll的引用 并用它来安装它PM> Install-Package Autoupdater.NET.Official
这就是我正在使用的语法

private void Form1_Load(object sender, EventArgs e)
{
    //Changing settings
    AutoUpdater.OpenDownloadPage = true;
    AutoUpdater.ShowRemindLaterButton = true;

    //Checking versioning info on Server
    AutoUpdater.Start("http://madeupURL/AutoUpdater.xml");
}

然而,我看起来与github目录中的图像完全不同。我只得到一个弹出窗口告诉我有一个新版本,我点击下载,然后显示更新程序,然后下载文件。

我的语法也没有编译错误,也没有调试错误。

是什么让我的语法不能覆盖文件?

0 个答案:

没有答案