示例#1
0
 static void Main(string[] args)
 {
     if (args.Length == 0)
     {
         return;
     }
     else if (args[0] == "update")
     {
         try
         {
             string          callExeName   = args[1];
             string          updateFileDir = args[2];
             string          appDir        = args[3];
             string          appName       = args[4];
             string          appVersion    = args[5];
             string          desc          = args[6];
             AutoUpdater.App app           = new AutoUpdater.App();
             UI.UpdateWindow downUI        = new UI.UpdateWindow(callExeName, updateFileDir, appDir, appName, appVersion, desc);
             app.Run(downUI);
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message);
         }
     }
 }
示例#2
0
 public static void Main()
 {
     AutoUpdater.App app = new AutoUpdater.App();
     app.Run();
 }