Skip to content

Commit c500a7f

Browse files
committed
Small fixes and changes in README
1 parent e5c6977 commit c500a7f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 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.
33

44
## Requirements
55
* .NET Core 3.1
@@ -12,8 +12,11 @@ A basic C# program for Advent of Code, retrieving puzzle inputs on the go and cr
1212

1313
## Usage
1414
### Create Project
15-
Create a new project of your own from this template repository, through the button shown below.
16-
![usetemplate](https://user-images.githubusercontent.com/23259585/95107477-3e522300-073a-11eb-8c80-c0cd4e1b5c11.png)
15+
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).
16+
17+
||
18+
|:--:|
19+
| ![usetemplate](https://user-images.githubusercontent.com/23259585/95107477-3e522300-073a-11eb-8c80-c0cd4e1b5c11.png) |
1720

1821
### Cleanup
1922
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
5962
> dotnet build
6063
> dotnet run
6164
```
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.
6366

6467
#### Notes
6568
* 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, "")
6972
string[] lines = Input.SplitByNewLine();
7073
foreach (string line in Lines)
7174
{
72-
//Parse out input here
75+
//Parse out input here
7376
}
7477
}
7578

@@ -81,7 +84,7 @@ protected override string SolvePartOne()
8184

8285
protected override string SolvePartTwo()
8386
{
84-
//Manipulations specific to Part 2 here
87+
//Manipulations specific to Part 2 here
8588
return result;
8689
}
8790
```

0 commit comments

Comments
 (0)