From 4c94eb10ace2db41837d3c89159047f57c8217bb Mon Sep 17 00:00:00 2001 From: Claudiu Farcas Date: Fri, 16 Apr 2021 11:21:23 +0300 Subject: [PATCH] project init --- .gitignore | 3 +++ Program.cs | 12 ++++++++++++ design_patterns.csproj | 8 ++++++++ 3 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 Program.cs create mode 100644 design_patterns.csproj diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5137440 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vscode +bin +obj \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..368b7bc --- /dev/null +++ b/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace design_patterns +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/design_patterns.csproj b/design_patterns.csproj new file mode 100644 index 0000000..1d2d39a --- /dev/null +++ b/design_patterns.csproj @@ -0,0 +1,8 @@ + + + + Exe + net5.0 + + +