project init

This commit is contained in:
Claudiu Farcas
2021-04-16 11:21:23 +03:00
parent c5bd461531
commit 4c94eb10ac
3 changed files with 23 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
.vscode
bin
obj
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace design_patterns
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
+8
View File
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>