added readme

master
cyberdick 2022-12-03 19:43:42 +05:30
parent 8b27e0d72a
commit dad144db00
2 changed files with 17 additions and 0 deletions

View File

@ -6,6 +6,7 @@ MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{99F5AC62-C5E8-4264-A511-C2ED59988EDA}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
Readme.md = Readme.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AOC2022", "AOC2022\AOC2022.csproj", "{E9B704DE-D6D2-4A72-971D-28E9F326B6EA}"

16
Readme.md 100644
View File

@ -0,0 +1,16 @@
# Cyberdick's advent of code 2022 shenanigans
### Written in C#. The only good language in this world
Place your input files in `./AOC2022/Inputs`
Filenames should be `1.txt` `2.txt` etc, any extension works but names should be day numbers
Open in VS/Rider and set params in `launchSettings.json` and hit play
Or
// Run all days you have inputs for
cd AOC2022/
dotnet run
// Specify specific days to run
dotnet run 3
dotnet run 1 2 3
## GLHF