You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
# AdventOfCodeBase
2
-
Template project for solving Advent of Code in C#, running on .NET Core 3.1.
2
+
Template project for solving Advent of Code in C#, running on [.NET Core 3.1](https://dotnet.microsoft.com/download/dotnet-core/3.1). If you wish to use .NET 5, [you can](#changing-from-net-core-to-net-5).
-[Using a Solution's Constructor](#using-a-solutions-constructor)
13
+
-[Changing From .NET Core To .NET 5](#changing-from-net-core-to-net-5)
14
14
-[Contributing](#contributing)
15
15
-[License](#license)
16
16
@@ -29,9 +29,6 @@ Feel free to make any modifications you want. However, you probably do not want
29
29
If any solution files that you need are not already included, see **[Generating Previous Year's Solution Files](#generating-previous-years-solution-files)**.
Create `config.json` with the following key/value pairs. If you run the program without adding a `config.json` file, one will be created for you without a cookie field. The program will not be able to fetch puzzle inputs from the web before a valid cookie is added to the configuration.
* If stuck you can set the `DebugInput` variable at the top of the constructor, and it will overwrite `Input` variable, so you won't need to change all your references.
104
101
* The extension method `SplitByNewLine()` will do exactly that, example: `string[] lines = Input.SplitByNewLine()` will split your input into lines for enumeration.
105
102
103
+
### Changing from .NET Core to .NET 5
104
+
Simply swap out the target framework in `AdventOfCode.csproj`.
0 commit comments