From 33806e82ca4d3428b10d4bccfca90e8e65571ecb Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 30 Nov 2020 11:16:50 -0500 Subject: [PATCH] add basic skeleton for AoC 2020 --- 2020/AdventOfCode.csproj | 8 ++++++++ 2020/Program.cs | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 2020/AdventOfCode.csproj create mode 100644 2020/Program.cs diff --git a/2020/AdventOfCode.csproj b/2020/AdventOfCode.csproj new file mode 100644 index 0000000..1d2d39a --- /dev/null +++ b/2020/AdventOfCode.csproj @@ -0,0 +1,8 @@ + + + + Exe + net5.0 + + + diff --git a/2020/Program.cs b/2020/Program.cs new file mode 100644 index 0000000..d5e011f --- /dev/null +++ b/2020/Program.cs @@ -0,0 +1,9 @@ +using System; + +namespace AdventOfCode { + class Program { + static void Main(string[] args) { + Console.WriteLine("Hello World!"); + } + } +}