0

我在查看 ClickOnce 如何知道它如何比较文件以及如何查找这些文件时遇到问题。我将让 ClickOnce 应用程序连接到服务器,但它是否在内部执行此操作?

4

2 回答 2

0

如果您不想进行编程更新,请在“更新”对话框中设置“运行前检查更新”(单击“发布”屏幕上的“更新”)。然后,当您发布新版本时,它与原始部署位于相同的文件夹中。当用户运行应用程序时,它会检查是否有更新,并询问他是否要安装它。此时,用户可以跳过它,或接受更新。

如果您使最低版本(在更新对话框中)等于您正在部署的版本,它不会询问他,它只会更新应用程序。

如果他跳过更新,他将在几周内再也看不到它,如果有的话。微软说 2 周,但我不相信它会再次出现,所以他可能不得不等到 NEXT 更新或手动安装新的。

于 2013-04-07T01:22:54.950 回答
0

您将在发布 ClickOnce 应用程序( MSDN ) 中找到所需的一切。

如何:使用 ClickOnce 部署 API 以编程方式检查应用程序更新

  1. 使用您喜欢的命令行或可视化工具创建一个新的 Windows 窗体应用程序。
  2. 创建您希望用户选择以检查更新的任何按钮、菜单项或其他用户界面项。从该项目的事件处理程序中,调用以下方法来检查和安装更新。
private void InstallUpdateSyncWithInfo()
{
    UpdateCheckInfo info = null;

    if (ApplicationDeployment.IsNetworkDeployed)
    {
        ApplicationDeployment ad = ApplicationDeployment.CurrentDeployment;

        try
        {
            info = ad.CheckForDetailedUpdate();

        }
        catch (DeploymentDownloadException dde)
        {
            MessageBox.Show("The new version of the application cannot be downloaded at this time. \n\nPlease check your network connection, or try again later. Error: " + dde.Message);
            return;
        }
        catch (InvalidDeploymentException ide)
        {
            MessageBox.Show("Cannot check for a new version of the application. The ClickOnce deployment is corrupt. Please redeploy the application and try again. Error: " + ide.Message);
            return;
        }
        catch (InvalidOperationException ioe)
        {
            MessageBox.Show("This application cannot be updated. It is likely not a ClickOnce application. Error: " + ioe.Message);
            return;
        }

        if (info.UpdateAvailable)
        {
            Boolean doUpdate = true;

            if (!info.IsUpdateRequired)
            {
                DialogResult dr = MessageBox.Show("An update is available. Would you like to update the application now?", "Update Available", MessageBoxButtons.OKCancel);
                if (!(DialogResult.OK == dr))
                {
                    doUpdate = false;
                }
            }
            else
            {
                // Display a message that the app MUST reboot. Display the minimum required version.
                MessageBox.Show("This application has detected a mandatory update from your current " + 
                    "version to version " + info.MinimumRequiredVersion.ToString() + 
                    ". The application will now install the update and restart.", 
                    "Update Available", MessageBoxButtons.OK, 
                    MessageBoxIcon.Information);
            }

            if (doUpdate)
            {
                try
                {
                    ad.Update();
                    MessageBox.Show("The application has been upgraded, and will now restart.");
                    Application.Restart();
                }
                catch (DeploymentDownloadException dde)
                {
                    MessageBox.Show("Cannot install the latest version of the application. \n\nPlease check your network connection, or try again later. Error: " + dde);
                    return;
                }
            }
        }
    }
}
于 2013-03-15T19:55:40.037 回答