From bd74283aaca4db00378b215f8597a2dc73a2d5d3 Mon Sep 17 00:00:00 2001 From: Weespin Date: Mon, 1 May 2023 22:34:19 +0300 Subject: [PATCH] Fixed a crash, updated the .NET version --- AcapellaDownloader/AcapellaDownloader.csproj | 3 ++- AcapellaDownloader/App.config | 6 ++--- .../Properties/Resources.Designer.cs | 26 +++++++++---------- .../Properties/Settings.Designer.cs | 10 +++---- AcapellaDownloader/Utils.cs | 2 +- UnitTests/UnitTests.csproj | 2 +- 6 files changed, 25 insertions(+), 24 deletions(-) diff --git a/AcapellaDownloader/AcapellaDownloader.csproj b/AcapellaDownloader/AcapellaDownloader.csproj index e17bc57..89a225a 100644 --- a/AcapellaDownloader/AcapellaDownloader.csproj +++ b/AcapellaDownloader/AcapellaDownloader.csproj @@ -8,11 +8,12 @@ WinExe AcapellaDownloader AcapellaDownloader - v4.6.1 + v4.8 512 true + AnyCPU diff --git a/AcapellaDownloader/App.config b/AcapellaDownloader/App.config index 731f6de..4bfa005 100644 --- a/AcapellaDownloader/App.config +++ b/AcapellaDownloader/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/AcapellaDownloader/Properties/Resources.Designer.cs b/AcapellaDownloader/Properties/Resources.Designer.cs index c4983b2..7671539 100644 --- a/AcapellaDownloader/Properties/Resources.Designer.cs +++ b/AcapellaDownloader/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Этот код создан программой. -// Исполняемая версия:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае -// повторной генерации кода. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -13,13 +13,13 @@ namespace AcapellaDownloader.Properties { /// - /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д. + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // Этот класс создан автоматически классом StronglyTypedResourceBuilder - // с помощью такого средства, как ResGen или Visual Studio. - // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen - // с параметром /str или перестройте свой проект VS. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -33,7 +33,7 @@ internal Resources() { } /// - /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ internal Resources() { } /// - /// Перезаписывает свойство CurrentUICulture текущего потока для всех - /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { diff --git a/AcapellaDownloader/Properties/Settings.Designer.cs b/AcapellaDownloader/Properties/Settings.Designer.cs index 54a5bc8..e804d59 100644 --- a/AcapellaDownloader/Properties/Settings.Designer.cs +++ b/AcapellaDownloader/Properties/Settings.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Этот код создан программой. -// Исполняемая версия:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае -// повторной генерации кода. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -12,7 +12,7 @@ namespace AcapellaDownloader.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.7.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.5.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); diff --git a/AcapellaDownloader/Utils.cs b/AcapellaDownloader/Utils.cs index fd5c2e8..d9616c0 100644 --- a/AcapellaDownloader/Utils.cs +++ b/AcapellaDownloader/Utils.cs @@ -11,7 +11,7 @@ namespace AcapellaDownloader public static class Utils { private const string _NonceEndpoint = "https://acapelavoices.acapela-group.com/index/getnonce/"; - private const string _SynthesizerEndpoint = "http://www.acapela-group.com:8080/webservices/1-34-01-Mobility/Synthesizer"; + private const string _SynthesizerEndpoint = "https://www.acapela-group.com:8443/Services/Synthesizer"; private static string _CachedNonce = ""; private static string _CachedEmail = ""; private static bool _LastFailed = false; diff --git a/UnitTests/UnitTests.csproj b/UnitTests/UnitTests.csproj index a4c73ff..c5f4e47 100644 --- a/UnitTests/UnitTests.csproj +++ b/UnitTests/UnitTests.csproj @@ -10,7 +10,7 @@ Properties UnitTests UnitTests - v4.6.1 + v4.8 512 {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 15.0