From 4a83bd3d5af5bed9abc9a1d3f2caae18768ce0bd Mon Sep 17 00:00:00 2001 From: tikaiz Date: Tue, 20 Jan 2026 07:59:53 +0100 Subject: [PATCH] Initial commit --- .gitignore | 6 ++++++ DesignPatterns.sln | 16 ++++++++++++++++ DesignPatterns/DesignPatterns.csproj | 10 ++++++++++ DesignPatterns/Program.cs | 3 +++ 4 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 DesignPatterns.sln create mode 100644 DesignPatterns/DesignPatterns.csproj create mode 100644 DesignPatterns/Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f400df3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +.idea/ \ No newline at end of file diff --git a/DesignPatterns.sln b/DesignPatterns.sln new file mode 100644 index 0000000..f164996 --- /dev/null +++ b/DesignPatterns.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DesignPatterns", "DesignPatterns\DesignPatterns.csproj", "{97DCCECE-E259-4D62-B8D4-B713C4029578}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {97DCCECE-E259-4D62-B8D4-B713C4029578}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {97DCCECE-E259-4D62-B8D4-B713C4029578}.Debug|Any CPU.Build.0 = Debug|Any CPU + {97DCCECE-E259-4D62-B8D4-B713C4029578}.Release|Any CPU.ActiveCfg = Release|Any CPU + {97DCCECE-E259-4D62-B8D4-B713C4029578}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/DesignPatterns/DesignPatterns.csproj b/DesignPatterns/DesignPatterns.csproj new file mode 100644 index 0000000..6c1dc92 --- /dev/null +++ b/DesignPatterns/DesignPatterns.csproj @@ -0,0 +1,10 @@ + + + + Exe + net10.0 + enable + enable + + + diff --git a/DesignPatterns/Program.cs b/DesignPatterns/Program.cs new file mode 100644 index 0000000..139ec4e --- /dev/null +++ b/DesignPatterns/Program.cs @@ -0,0 +1,3 @@ +// See https://aka.ms/new-console-template for more information + +Console.WriteLine("Hello, World!");