From b6b583c9dda2094aa821e232b5933e8298949fab Mon Sep 17 00:00:00 2001 From: Marcin Badurowicz Date: Tue, 10 Oct 2023 17:32:45 +0200 Subject: [PATCH] first commit --- .gitignore | 3 +++ ComplexApp1.csproj | 10 ++++++++++ Program.cs | 2 ++ 3 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 ComplexApp1.csproj create mode 100644 Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3afdc66 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +bin/ +obj/ +.vscode/ \ No newline at end of file diff --git a/ComplexApp1.csproj b/ComplexApp1.csproj new file mode 100644 index 0000000..f02677b --- /dev/null +++ b/ComplexApp1.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!");