From 1472ad16b312adc35c49400fb05bfe52426c66d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=96=D0=B5=D0=BB=D0=BE=D0=BD=D0=BA=D0=B8=D0=BD=20=D0=94?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=81?= Date: Thu, 23 Jan 2025 22:41:52 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D1=8C=D1=82?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NoDuplicate.sln | 22 ++++ NoDuplicate/App.config | 6 + NoDuplicate/Form1.Designer.cs | 40 +++++++ NoDuplicate/Form1.cs | 20 ++++ NoDuplicate/NoDuplicate.csproj | 116 ++++++++++++++++++ NoDuplicate/Program.cs | 22 ++++ NoDuplicate/Properties/AssemblyInfo.cs | 33 ++++++ NoDuplicate/Properties/Resources.Designer.cs | 71 +++++++++++ NoDuplicate/Properties/Resources.resx | 117 +++++++++++++++++++ NoDuplicate/Properties/Settings.Designer.cs | 30 +++++ NoDuplicate/Properties/Settings.settings | 7 ++ NoDuplicate/packages.config | 13 +++ 12 files changed, 497 insertions(+) create mode 100644 NoDuplicate.sln create mode 100644 NoDuplicate/App.config create mode 100644 NoDuplicate/Form1.Designer.cs create mode 100644 NoDuplicate/Form1.cs create mode 100644 NoDuplicate/NoDuplicate.csproj create mode 100644 NoDuplicate/Program.cs create mode 100644 NoDuplicate/Properties/AssemblyInfo.cs create mode 100644 NoDuplicate/Properties/Resources.Designer.cs create mode 100644 NoDuplicate/Properties/Resources.resx create mode 100644 NoDuplicate/Properties/Settings.Designer.cs create mode 100644 NoDuplicate/Properties/Settings.settings create mode 100644 NoDuplicate/packages.config diff --git a/NoDuplicate.sln b/NoDuplicate.sln new file mode 100644 index 0000000..d57f149 --- /dev/null +++ b/NoDuplicate.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35521.163 d17.12 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoDuplicate", "NoDuplicate\NoDuplicate.csproj", "{4A65FCAC-0DAA-4EB5-AB34-61A9028F5D80}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4A65FCAC-0DAA-4EB5-AB34-61A9028F5D80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4A65FCAC-0DAA-4EB5-AB34-61A9028F5D80}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4A65FCAC-0DAA-4EB5-AB34-61A9028F5D80}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4A65FCAC-0DAA-4EB5-AB34-61A9028F5D80}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/NoDuplicate/App.config b/NoDuplicate/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/NoDuplicate/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/NoDuplicate/Form1.Designer.cs b/NoDuplicate/Form1.Designer.cs new file mode 100644 index 0000000..6548878 --- /dev/null +++ b/NoDuplicate/Form1.Designer.cs @@ -0,0 +1,40 @@ +namespace NoDuplicate +{ + partial class Form1 + { + /// + /// Обязательная переменная конструктора. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Освободить все используемые ресурсы. + /// + /// истинно, если управляемый ресурс должен быть удален; иначе ложно. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Код, автоматически созданный конструктором форм Windows + + /// + /// Требуемый метод для поддержки конструктора — не изменяйте + /// содержимое этого метода с помощью редактора кода. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Form1"; + } + + #endregion + } +} + diff --git a/NoDuplicate/Form1.cs b/NoDuplicate/Form1.cs new file mode 100644 index 0000000..ac33d77 --- /dev/null +++ b/NoDuplicate/Form1.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace NoDuplicate +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/NoDuplicate/NoDuplicate.csproj b/NoDuplicate/NoDuplicate.csproj new file mode 100644 index 0000000..cc24c3c --- /dev/null +++ b/NoDuplicate/NoDuplicate.csproj @@ -0,0 +1,116 @@ + + + + + Debug + AnyCPU + {4A65FCAC-0DAA-4EB5-AB34-61A9028F5D80} + WinExe + NoDuplicate + NoDuplicate + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\EPPlus.7.5.3\lib\net462\EPPlus.dll + + + ..\packages\EPPlus.Interfaces.7.5.0\lib\net462\EPPlus.Interfaces.dll + + + ..\packages\EPPlus.System.Drawing.7.5.0\lib\net462\EPPlus.System.Drawing.dll + + + ..\packages\Microsoft.IO.RecyclableMemoryStream.3.0.1\lib\netstandard2.0\Microsoft.IO.RecyclableMemoryStream.dll + + + + + ..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll + + + ..\packages\System.ComponentModel.Annotations.5.0.0\lib\net461\System.ComponentModel.Annotations.dll + + + + + + ..\packages\System.Drawing.Common.8.0.4\lib\net462\System.Drawing.Common.dll + + + ..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll + + + + ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll + + + ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/NoDuplicate/Program.cs b/NoDuplicate/Program.cs new file mode 100644 index 0000000..89af7a8 --- /dev/null +++ b/NoDuplicate/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace NoDuplicate +{ + internal static class Program + { + /// + /// Главная точка входа для приложения. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/NoDuplicate/Properties/AssemblyInfo.cs b/NoDuplicate/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0cd9580 --- /dev/null +++ b/NoDuplicate/Properties/AssemblyInfo.cs @@ -0,0 +1,33 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Общие сведения об этой сборке предоставляются следующим набором +// набора атрибутов. Измените значения этих атрибутов для изменения сведений, +// связанных со сборкой. +[assembly: AssemblyTitle("NoDuplicate")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("NoDuplicate")] +[assembly: AssemblyCopyright("Copyright © 2025")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми +// для компонентов COM. Если необходимо обратиться к типу в этой сборке через +// COM, следует установить атрибут ComVisible в TRUE для этого типа. +[assembly: ComVisible(false)] + +// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM +[assembly: Guid("4a65fcac-0daa-4eb5-ab34-61a9028f5d80")] + +// Сведения о версии сборки состоят из указанных ниже четырех значений: +// +// Основной номер версии +// Дополнительный номер версии +// Номер сборки +// Редакция +// +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/NoDuplicate/Properties/Resources.Designer.cs b/NoDuplicate/Properties/Resources.Designer.cs new file mode 100644 index 0000000..6d55217 --- /dev/null +++ b/NoDuplicate/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программным средством. +// Версия среды выполнения: 4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если +// код создан повторно. +// +//------------------------------------------------------------------------------ + +namespace NoDuplicate.Properties +{ + + + /// + /// Класс ресурсов со строгим типом для поиска локализованных строк и пр. + /// + // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder + // класс с помощью таких средств, как ResGen или Visual Studio. + // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen + // с параметром /str или заново постройте свой VS-проект. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Возврат кэшированного экземпляра ResourceManager, используемого этим классом. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NoDuplicate.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Переопределяет свойство CurrentUICulture текущего потока для всех + /// подстановки ресурсов с помощью этого класса ресурсов со строгим типом. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/NoDuplicate/Properties/Resources.resx b/NoDuplicate/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/NoDuplicate/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/NoDuplicate/Properties/Settings.Designer.cs b/NoDuplicate/Properties/Settings.Designer.cs new file mode 100644 index 0000000..73ab194 --- /dev/null +++ b/NoDuplicate/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace NoDuplicate.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 + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/NoDuplicate/Properties/Settings.settings b/NoDuplicate/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/NoDuplicate/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/NoDuplicate/packages.config b/NoDuplicate/packages.config new file mode 100644 index 0000000..f81bf04 --- /dev/null +++ b/NoDuplicate/packages.config @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file