From fd37f04058ece8f9a66f1cfd6f9986364702d7bb Mon Sep 17 00:00:00 2001 From: Brandon Scott Date: Sun, 9 Dec 2018 01:33:26 -0600 Subject: [PATCH] Upgraded target to .NET Core 2.1 --- AoC2018/AoC2018.csproj | 2 +- AoC2018Test/AoC2018Test.csproj | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AoC2018/AoC2018.csproj b/AoC2018/AoC2018.csproj index 40f6b2a..e522f8d 100644 --- a/AoC2018/AoC2018.csproj +++ b/AoC2018/AoC2018.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp1.1 + netcoreapp2.1 diff --git a/AoC2018Test/AoC2018Test.csproj b/AoC2018Test/AoC2018Test.csproj index f3d6f50..f2110f0 100644 --- a/AoC2018Test/AoC2018Test.csproj +++ b/AoC2018Test/AoC2018Test.csproj @@ -1,7 +1,7 @@  - netcoreapp1.1 + netcoreapp2.1 diff --git a/README.md b/README.md index 221d2cf..56a273f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ These are my solutions to the Advent of Code 2018. All of solutions are written in C#. I'm also attempting to write unit tests for each of the solutions. -I am targeting .NET Core 2.1, and this project should be cross-platform compatible. +I am targeting .NET Core 2.1, so this project should be cross-platform compatible. ## Author