From dad144db0051b1685a2304888f44b32aa357f447 Mon Sep 17 00:00:00 2001 From: cyberdick Date: Sat, 3 Dec 2022 19:43:42 +0530 Subject: [PATCH] added readme --- AdventOfCode.sln | 1 + Readme.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 Readme.md diff --git a/AdventOfCode.sln b/AdventOfCode.sln index 2c5d535..c9779ee 100644 --- a/AdventOfCode.sln +++ b/AdventOfCode.sln @@ -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}" diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..fd2306a --- /dev/null +++ b/Readme.md @@ -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