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
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# AdventOfCodeBase
2
-
A basic C# program for Advent of Code, retrieving puzzle inputs on the go and creating instances of solutions as they are created. It runs on .NET Core 3.0 and can be built easily in Visual Studio Code or Visual Studio.
2
+
A basic C# program for Advent of Code, retrieving puzzle inputs on the go and creating instances of solutions as they are created. It runs on .NET Core 3.1 and can be built easily in Visual Studio Code or Visual Studio.
3
3
4
4
## Requirements
5
5
* .NET Core 3.1
@@ -12,8 +12,11 @@ A basic C# program for Advent of Code, retrieving puzzle inputs on the go and cr
12
12
13
13
## Usage
14
14
### Create Project
15
-
Create a new project of your own from this template repository, through the button shown below.
Create a new project of your own from this template repository by clicking the button shown below, or through [this link](https://github.com/sindrekjr/AdventOfCodeBase/generate).
Make any file additions/modifications you want, such as removing solution files for previous years if you've no interest in completing those. You probably do not want to remove any files outside of `AdventOfCode/Solutions/` unless you know what you're doing.
@@ -59,7 +62,7 @@ Write your code solutions to advent of code within the appropriate day classes i
59
62
> dotnet build
60
63
> dotnet run
61
64
```
62
-
Using `dotnet run` from the root of the project will also work as long as you specify which project to run by adding `-p AdventOfCode`. Note that `config.json` must be stored in the folder from where you run the project.
65
+
Using `dotnet run` from the root of the repository will also work as long as you specify which project to run by adding `-p AdventOfCode`. Note that your `config.json` must be stored in the location from where you run your project.
63
66
64
67
#### Notes
65
68
* Code may be written in the solution constructor if it will be beneficial to both parts of the problem (such as parsing the data). Example:
@@ -69,7 +72,7 @@ public Day07() : base(07, 2015, "")
0 commit comments