From 8cb6ef8be1385087c8a0d6d351b16f40a7a171c8 Mon Sep 17 00:00:00 2001 From: Serraniel Date: Sun, 23 Jul 2023 19:18:40 +0200 Subject: [PATCH] Adds empty solution and projects --- Tagashi File Hub.sln | 31 +++++++++++++++ Tagashi File Hub.sln.DotSettings | 2 + src/Tagashi File Hub/Form1.Designer.cs | 39 +++++++++++++++++++ src/Tagashi File Hub/Form1.cs | 10 +++++ src/Tagashi File Hub/Program.cs | 17 ++++++++ src/Tagashi File Hub/Tagashi File Hub.csproj | 12 ++++++ src/TagashiFileHub.Core/Class1.cs | 7 ++++ .../TagashiFileHub.Core.csproj | 9 +++++ 8 files changed, 127 insertions(+) create mode 100644 Tagashi File Hub.sln create mode 100644 Tagashi File Hub.sln.DotSettings create mode 100644 src/Tagashi File Hub/Form1.Designer.cs create mode 100644 src/Tagashi File Hub/Form1.cs create mode 100644 src/Tagashi File Hub/Program.cs create mode 100644 src/Tagashi File Hub/Tagashi File Hub.csproj create mode 100644 src/TagashiFileHub.Core/Class1.cs create mode 100644 src/TagashiFileHub.Core/TagashiFileHub.Core.csproj diff --git a/Tagashi File Hub.sln b/Tagashi File Hub.sln new file mode 100644 index 0000000..4af8c31 --- /dev/null +++ b/Tagashi File Hub.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.33913.275 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tagashi File Hub", "src\Tagashi File Hub\Tagashi File Hub.csproj", "{A4C5EF53-50CC-49D4-B750-C7FB2F848455}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TagashiFileHub.Core", "src\TagashiFileHub.Core\TagashiFileHub.Core.csproj", "{39536C05-9C87-44CA-A753-6A317F252666}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A4C5EF53-50CC-49D4-B750-C7FB2F848455}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A4C5EF53-50CC-49D4-B750-C7FB2F848455}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A4C5EF53-50CC-49D4-B750-C7FB2F848455}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A4C5EF53-50CC-49D4-B750-C7FB2F848455}.Release|Any CPU.Build.0 = Release|Any CPU + {39536C05-9C87-44CA-A753-6A317F252666}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {39536C05-9C87-44CA-A753-6A317F252666}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39536C05-9C87-44CA-A753-6A317F252666}.Release|Any CPU.ActiveCfg = Release|Any CPU + {39536C05-9C87-44CA-A753-6A317F252666}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B374DBF1-7DBE-4218-BE5E-DD7A972F881D} + EndGlobalSection +EndGlobal diff --git a/Tagashi File Hub.sln.DotSettings b/Tagashi File Hub.sln.DotSettings new file mode 100644 index 0000000..7ca513e --- /dev/null +++ b/Tagashi File Hub.sln.DotSettings @@ -0,0 +1,2 @@ + + True \ No newline at end of file diff --git a/src/Tagashi File Hub/Form1.Designer.cs b/src/Tagashi File Hub/Form1.Designer.cs new file mode 100644 index 0000000..f4d70f1 --- /dev/null +++ b/src/Tagashi File Hub/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace Tagashi_File_Hub +{ + partial class Form1 + { + /// + /// 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() + { + 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 + } +} \ No newline at end of file diff --git a/src/Tagashi File Hub/Form1.cs b/src/Tagashi File Hub/Form1.cs new file mode 100644 index 0000000..410faec --- /dev/null +++ b/src/Tagashi File Hub/Form1.cs @@ -0,0 +1,10 @@ +namespace Tagashi_File_Hub +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Tagashi File Hub/Program.cs b/src/Tagashi File Hub/Program.cs new file mode 100644 index 0000000..4ecbd16 --- /dev/null +++ b/src/Tagashi File Hub/Program.cs @@ -0,0 +1,17 @@ +namespace Tagashi_File_Hub +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/src/Tagashi File Hub/Tagashi File Hub.csproj b/src/Tagashi File Hub/Tagashi File Hub.csproj new file mode 100644 index 0000000..47185f9 --- /dev/null +++ b/src/Tagashi File Hub/Tagashi File Hub.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net7.0-windows + Tagashi_File_Hub + enable + true + enable + + + \ No newline at end of file diff --git a/src/TagashiFileHub.Core/Class1.cs b/src/TagashiFileHub.Core/Class1.cs new file mode 100644 index 0000000..0c11aa6 --- /dev/null +++ b/src/TagashiFileHub.Core/Class1.cs @@ -0,0 +1,7 @@ +namespace TagashiFileHub.Core +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/src/TagashiFileHub.Core/TagashiFileHub.Core.csproj b/src/TagashiFileHub.Core/TagashiFileHub.Core.csproj new file mode 100644 index 0000000..cfadb03 --- /dev/null +++ b/src/TagashiFileHub.Core/TagashiFileHub.Core.csproj @@ -0,0 +1,9 @@ + + + + net7.0 + enable + enable + + +