working on automatic mode

This commit is contained in:
Jakob 2018-07-05 23:30:04 +02:00
parent 6745d9a91d
commit c0b78f240b
7 changed files with 123 additions and 22 deletions

View file

@ -1,6 +1,6 @@
using System;
using System.Net;
using System.Net.Http;
using System;
using System.Net;
using System.Net.Http;
using System.IO;
using System.Windows.Markup;
using System.Windows;
@ -9,7 +9,7 @@ namespace h_encore_auto
{
public class Util
{
private static WebClient web = new WebClient();
private static WebClient web = new WebClient();
private static HttpClient http = new HttpClient();
public static string GetEncKey(string aid)
@ -58,7 +58,6 @@ namespace h_encore_auto
public static void cleanup()
{
Util.DeleteDirectory(Ref.tempDir);
MessageBox.Show("Done.");
System.Environment.Exit(0);
}
}