Skip to content

Commit e26827c

Browse files
authored
docs(README): added section for example projects
1 parent 9859b69 commit e26827c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Template project for solving Advent of Code in C#, running on .NET Core 3.1.
77
- [Requirements](#requirements)
88
- [Configuration](#configuration)
99
- [Running the project](#running-the-project)
10-
- [Notes & Examples](#notes--examples)
10+
- [Example projects](#example-projects)
11+
- [Notes](#notes)
1112
- [Generating Previous Year's Solution Files](#generating-previous-years-solution-files)
1213
- [Using a Solution's Constructor](#using-a-solutions-constructor)
1314
- [Contributing](#contributing)
@@ -52,8 +53,6 @@ The field supports list comprehension syntax and strings, meaning the following
5253
* `[1, 3, "5..9", 15]` - runs day 1, 3, 5, 6, 7, 8, 9, and 15.
5354
* `0` - runs all days
5455

55-
56-
5756
### Running the project
5857
Write your code solutions to advent of code within the appropriate day classes in the Solutions folder, and run the project. From the command line you may do as follows.
5958
```
@@ -63,7 +62,10 @@ Write your code solutions to advent of code within the appropriate day classes i
6362
```
6463
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.
6564

66-
## Notes & Examples
65+
### Example projects
66+
* [sindrekjr/AdventOfCode](https://github.com/sindrekjr/AdventOfCode)
67+
68+
## Notes
6769
### Generating Previous Year's Solution Files
6870
Use the included PowerShell script `AdventOfCode/UserScripts/GenerateSolutionFiles.ps1` to generate a year's solution files following the same layout as those already included.
6971

0 commit comments

Comments
 (0)