diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.Designer.cs b/ShareX.UploadersLib/Forms/OAuthWebForm.Designer.cs deleted file mode 100644 index f4e062ad4..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.Designer.cs +++ /dev/null @@ -1,113 +0,0 @@ -namespace ShareX.UploadersLib -{ - partial class OAuthWebForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OAuthWebForm)); - this.tscMain = new System.Windows.Forms.ToolStripContainer(); - this.wbMain = new System.Windows.Forms.WebBrowser(); - this.tsMain = new System.Windows.Forms.ToolStrip(); - this.tslURL = new System.Windows.Forms.ToolStripLabel(); - this.tstbURL = new System.Windows.Forms.ToolStripTextBox(); - this.tscMain.ContentPanel.SuspendLayout(); - this.tscMain.TopToolStripPanel.SuspendLayout(); - this.tscMain.SuspendLayout(); - this.tsMain.SuspendLayout(); - this.SuspendLayout(); - // - // tscMain - // - // - // tscMain.ContentPanel - // - this.tscMain.ContentPanel.Controls.Add(this.wbMain); - resources.ApplyResources(this.tscMain.ContentPanel, "tscMain.ContentPanel"); - resources.ApplyResources(this.tscMain, "tscMain"); - this.tscMain.Name = "tscMain"; - // - // tscMain.TopToolStripPanel - // - this.tscMain.TopToolStripPanel.Controls.Add(this.tsMain); - // - // wbMain - // - resources.ApplyResources(this.wbMain, "wbMain"); - this.wbMain.Name = "wbMain"; - this.wbMain.ScriptErrorsSuppressed = true; - this.wbMain.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbMain_Navigated); - // - // tsMain - // - resources.ApplyResources(this.tsMain, "tsMain"); - this.tsMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; - this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.tslURL, - this.tstbURL}); - this.tsMain.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; - this.tsMain.Name = "tsMain"; - this.tsMain.Stretch = true; - // - // tslURL - // - this.tslURL.Name = "tslURL"; - resources.ApplyResources(this.tslURL, "tslURL"); - // - // tstbURL - // - this.tstbURL.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.tstbURL.Name = "tstbURL"; - resources.ApplyResources(this.tstbURL, "tstbURL"); - // - // OAuthWebForm - // - resources.ApplyResources(this, "$this"); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.SystemColors.Window; - this.Controls.Add(this.tscMain); - this.Name = "OAuthWebForm"; - this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; - this.tscMain.ContentPanel.ResumeLayout(false); - this.tscMain.TopToolStripPanel.ResumeLayout(false); - this.tscMain.TopToolStripPanel.PerformLayout(); - this.tscMain.ResumeLayout(false); - this.tscMain.PerformLayout(); - this.tsMain.ResumeLayout(false); - this.tsMain.PerformLayout(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.WebBrowser wbMain; - private System.Windows.Forms.ToolStripContainer tscMain; - private System.Windows.Forms.ToolStrip tsMain; - private System.Windows.Forms.ToolStripLabel tslURL; - private System.Windows.Forms.ToolStripTextBox tstbURL; - } -} \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.cs b/ShareX.UploadersLib/Forms/OAuthWebForm.cs deleted file mode 100644 index b110c2740..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.cs +++ /dev/null @@ -1,78 +0,0 @@ -#region License Information (GPL v3) - -/* - ShareX - A program that allows you to take screenshots and share any file type - Copyright (c) 2007-2019 ShareX Team - - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - Optionally you can also view the license at . -*/ - -#endregion License Information (GPL v3) - -using ShareX.HelpersLib; -using System; -using System.Collections.Specialized; -using System.Web; -using System.Windows.Forms; - -namespace ShareX.UploadersLib -{ - public partial class OAuthWebForm : Form - { - public string AuthorizeURL { get; set; } - public string CallbackURL { get; set; } - public string Code { get; set; } - - public OAuthWebForm(string authorizeURL, string callbackURL) - { - InitializeComponent(); - Icon = ShareXResources.Icon; - AuthorizeURL = authorizeURL; - CallbackURL = callbackURL; - tstbURL.Text = authorizeURL; - wbMain.Navigate(AuthorizeURL); - } - - private void wbMain_Navigated(object sender, WebBrowserNavigatedEventArgs e) - { - if (!IsDisposed) - { - tstbURL.Text = e.Url.ToString(); - CheckCallback(e.Url.ToString()); - } - } - - private void CheckCallback(string url) - { - if (url.StartsWith(CallbackURL, StringComparison.InvariantCultureIgnoreCase)) - { - NameValueCollection args = HttpUtility.ParseQueryString(url); - - if (args != null) - { - Code = args["code"]; - - if (!string.IsNullOrEmpty(Code)) - { - DialogResult = DialogResult.OK; - Close(); - } - } - } - } - } -} \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.de.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.de.resx deleted file mode 100644 index 05ce3a3a1..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.de.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Autorisierung - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.es-MX.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.es-MX.resx deleted file mode 100644 index d748e6799..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.es-MX.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Autorización - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.es.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.es.resx deleted file mode 100644 index d748e6799..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.es.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Autorización - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.fr.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.fr.resx deleted file mode 100644 index 1bb67fc68..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.fr.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Autorisation - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.hu.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.hu.resx deleted file mode 100644 index 707c63443..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.hu.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Felhatalmazás - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.id-ID.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.id-ID.resx deleted file mode 100644 index 97f8bd860..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.id-ID.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Otorisasi - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.it-IT.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.it-IT.resx deleted file mode 100644 index d5d00a946..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.it-IT.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Autorizzazione - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.ko-KR.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.ko-KR.resx deleted file mode 100644 index a487e93d3..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.ko-KR.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - 인증 - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.nl-NL.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.nl-NL.resx deleted file mode 100644 index 33b40f617..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.nl-NL.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Toestemming - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.pt-BR.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.pt-BR.resx deleted file mode 100644 index 82a5fcb81..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.pt-BR.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Autorização - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.resx deleted file mode 100644 index c85ff2d65..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.resx +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain.BottomToolStripPanel - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain - - - 4 - - - - Fill - - - - 0, 0 - - - 20, 20 - - - 1056, 545 - - - - 0 - - - wbMain - - - System.Windows.Forms.WebBrowser, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain.ContentPanel - - - 0 - - - 1056, 545 - - - tscMain.ContentPanel - - - System.Windows.Forms.ToolStripContentPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain - - - 0 - - - Fill - - - tscMain.LeftToolStripPanel - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain - - - 1 - - - 0, 0 - - - tscMain.RightToolStripPanel - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain - - - 2 - - - 1056, 574 - - - 2 - - - 17, 17 - - - None - - - 31, 20 - - - URL: - @Invariant - - 800, 23 - - - 0, 0 - - - 3, 3, 3, 3 - - - 1056, 29 - - - 0 - - - tsMain - - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain.TopToolStripPanel - - - 0 - - - tscMain.TopToolStripPanel - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tscMain - - - 3 - - - tscMain - - - System.Windows.Forms.ToolStripContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - True - - - 6, 13 - - - 1056, 574 - - - CenterScreen - - - ShareX - Authorization - - - tslURL - - - System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tstbURL - - - System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OAuthWebForm - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.ru.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.ru.resx deleted file mode 100644 index cca63f07c..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.ru.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Авторизация - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.tr.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.tr.resx deleted file mode 100644 index c3d863306..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.tr.resx +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Yetkilendirme - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.uk.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.uk.resx deleted file mode 100644 index 21f68008e..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.uk.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - @Invariant - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.vi-VN.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.vi-VN.resx deleted file mode 100644 index 06ba87e9a..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.vi-VN.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - Ủy quyền - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.zh-CN.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.zh-CN.resx deleted file mode 100644 index 0537cb9fa..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.zh-CN.resx +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - 授权 - - \ No newline at end of file diff --git a/ShareX.UploadersLib/Forms/OAuthWebForm.zh-TW.resx b/ShareX.UploadersLib/Forms/OAuthWebForm.zh-TW.resx deleted file mode 100644 index 2d078634f..000000000 --- a/ShareX.UploadersLib/Forms/OAuthWebForm.zh-TW.resx +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShareX - 授權 - - \ No newline at end of file diff --git a/ShareX.UploadersLib/ShareX.UploadersLib.csproj b/ShareX.UploadersLib/ShareX.UploadersLib.csproj index 055145455..7a64ece00 100644 --- a/ShareX.UploadersLib/ShareX.UploadersLib.csproj +++ b/ShareX.UploadersLib/ShareX.UploadersLib.csproj @@ -207,12 +207,6 @@ OAuthControl.cs - - Form - - - OAuthWebForm.cs - Form @@ -560,54 +554,6 @@ JiraUpload.cs - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - - - OAuthWebForm.cs - OCRSpaceForm.cs @@ -863,9 +809,6 @@ OAuthControl.cs - - OAuthWebForm.cs - ResponseForm.cs