add basic skeleton for AoC 2020

This commit is contained in:
Colin McMillen 2020-11-30 11:16:50 -05:00
parent 5c7b560ed2
commit 33806e82ca
2 changed files with 17 additions and 0 deletions

8
2020/AdventOfCode.csproj Normal file
View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>

9
2020/Program.cs Normal file
View File

@ -0,0 +1,9 @@
using System;
namespace AdventOfCode {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello World!");
}
}
}