diff --git a/2020/AdventOfCode.csproj b/2020/AdventOfCode.csproj index e54daa1..fd1d8ee 100644 --- a/2020/AdventOfCode.csproj +++ b/2020/AdventOfCode.csproj @@ -1,14 +1,14 @@ - - - - Exe - net5.0 - false - - - - - - - - + + + + Exe + net5.0 + false + + + + + + + + diff --git a/2020/Program.cs b/2020/Program.cs index 7357982..f336379 100644 --- a/2020/Program.cs +++ b/2020/Program.cs @@ -1,23 +1,23 @@ -using System; -using static System.Console; -using System.Collections.Generic; -using Xunit; - -namespace AdventOfCode { - - public class Program { - - static string Hello() { - return "ahoy, world"; - } - - [Fact] - static void HelloTest() { - Assert.Equal("ahoy, world", Hello()); - } - - static void Main(string[] args) { - Console.WriteLine(Hello()); - } - } -} +using System; +using static System.Console; +using System.Collections.Generic; +using Xunit; + +namespace AdventOfCode { + + public class Program { + + static string Hello() { + return "ahoy, world"; + } + + [Fact] + static void HelloTest() { + Assert.Equal("ahoy, world", Hello()); + } + + static void Main(string[] args) { + Console.WriteLine(Hello()); + } + } +}