From d5412c017398989e61a8e09a08c525e87793dd87 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 30 Nov 2020 11:27:07 -0500 Subject: [PATCH] fix dos line endings (grumble @ MSFT tooling) --- 2020/AdventOfCode.csproj | 28 ++++++++++++------------ 2020/Program.cs | 46 ++++++++++++++++++++-------------------- 2 files changed, 37 insertions(+), 37 deletions(-) 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()); + } + } +}