diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs b/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs index f42f616..d26e4f7 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs @@ -122,9 +122,9 @@ namespace net.nutcore.aliddns xmlDoc.Indent = true; XmlWriter xw = XmlWriter.Create(configFilePath, xmlDoc); xElement.Save(xw);//写入文件 - xw.Dispose(); + //xw.Dispose(); //xw.Flush(); - //xw.Close(); + xw.Close(); } /// diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs index d894be5..1186753 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs @@ -528,9 +528,9 @@ namespace net.nutcore.aliddns } } - private async void toolStripMenuItem_Quit_Click(object sender, EventArgs e) + private void toolStripMenuItem_Quit_Click(object sender, EventArgs e) { - await ngrok.Stop(); + ngrok.Stop(); this.Dispose(); } @@ -795,7 +795,7 @@ namespace net.nutcore.aliddns MessageBox.Show("获取新版本信息失败!"); } - private async void checkBox_ngrok_CheckedChanged(object sender, EventArgs e) + private void checkBox_ngrok_CheckedChanged(object sender, EventArgs e) { if (checkBox_ngrok.Checked == true) @@ -806,7 +806,7 @@ namespace net.nutcore.aliddns if (ngrok.IsExists()) { textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Ngrok功能启用,ngrok.exe将自动加载!本机浏览器打开:http://127.0.0.1:4040 查看运行状态。" + "\r\n"); - await ngrok.Start(); + ngrok.Start(); } else { @@ -816,7 +816,7 @@ namespace net.nutcore.aliddns else { cfg.SaveAppSetting("ngrokauto", "Off"); - await ngrok.Stop(); + ngrok.Stop(); button_ngrok.Enabled = true; textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Ngrok功能关闭,再次启动将不会加载!" + "\r\n"); } diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs b/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs index 5c00a38..b8891af 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs @@ -3,6 +3,7 @@ using System; using System.Diagnostics; using System.IO; using System.Net; +using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; using YamlDotNet.Serialization; @@ -179,7 +180,7 @@ namespace net.nutcore.aliddns File.WriteAllText(FileConfig, yaml); } - public async Task Start(int code = 0) + public void Start(int code = 0) { var exec = new ProcessStartInfo(); exec.WorkingDirectory = CurrentDirectory; @@ -209,7 +210,7 @@ namespace net.nutcore.aliddns try { - await Task.Run(() => + Thread thread = new Thread(() => { var proc = Process.Start(exec); proc.WaitForExit(); @@ -222,9 +223,9 @@ namespace net.nutcore.aliddns } } - public async Task Stop() + public void Stop() { - await Task.Run(() => + Thread thread = new Thread(() => { Process[] pList = Process.GetProcessesByName("Ngrok"); foreach (Process p in pList) diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs index 300650a..ae84285 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, // 方法是按如下所示使用“*”: : // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.8.5.0")] -[assembly: AssemblyFileVersion("3.8.5.0")] +[assembly: AssemblyVersion("3.8.6.0")] +[assembly: AssemblyFileVersion("3.8.6.0")] diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs index 5b41329..fa2ebc3 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Properties/Settings.Designer.cs @@ -1,28 +1,24 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ -namespace net.nutcore.aliddns.Properties -{ - - +namespace net.nutcore.aliddns.Properties { + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase - { - + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default - { - get - { + + public static Settings Default { + get { return defaultInstance; } } diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-alidns.dll b/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-alidns.dll index 339b3f9..3468044 100644 Binary files a/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-alidns.dll and b/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-alidns.dll differ diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-core.dll b/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-core.dll index e11b4a8..3e08443 100644 Binary files a/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-core.dll and b/net.nutcore.aliddns/net.nutcore.aliddns/aliyun-net-sdk-core.dll differ diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/app.config b/net.nutcore.aliddns/net.nutcore.aliddns/app.config new file mode 100644 index 0000000..3f26b59 --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/app.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj b/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj index b673beb..aaff07e 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj +++ b/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj @@ -9,7 +9,7 @@ Properties net.nutcore.aliddns AliDDNS - v4.5.2 + v4.0 512 true false @@ -27,6 +27,7 @@ 0.0.0.%2a false true + AnyCPU @@ -60,7 +61,7 @@ aliyun-net-sdk-core.dll - ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll + ..\packages\Newtonsoft.Json.11.0.2\lib\net40\Newtonsoft.Json.dll True @@ -69,21 +70,46 @@ - + + ..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.IO.dll + True + + + ..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.dll + True + + + ..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.Extensions.dll + True + + + ..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.Primitives.dll + True + + + ..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.WebRequest.dll + True + + + ..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Runtime.dll + True + + + ..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Threading.Tasks.dll + True + - - - ..\packages\YamlDotNet.4.3.2\lib\net45\YamlDotNet.dll + ..\packages\YamlDotNet.5.0.1\lib\net35\YamlDotNet.dll True @@ -130,6 +156,7 @@ Resources.resx True + SettingsSingleFileGenerator @@ -175,6 +202,11 @@ + + + + +