Solution reorganized

This commit is contained in:
Tiago Garcia 2023-06-08 12:47:26 +01:00
parent 13b353a2da
commit 5edeecd126
No known key found for this signature in database
GPG Key ID: F423E37A2415E160
11 changed files with 18 additions and 21 deletions

View File

@ -1,6 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdventOfCode", "AdventOfCode\AdventOfCode.csproj", "{D9E24F29-20E8-4271-89A3-4940A5A044D7}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdventOfCode", "AdventOfCode.csproj", "{4DCF01D7-6DE0-471B-BB3B-6E28E9B001C1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -8,9 +8,9 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D9E24F29-20E8-4271-89A3-4940A5A044D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D9E24F29-20E8-4271-89A3-4940A5A044D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D9E24F29-20E8-4271-89A3-4940A5A044D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D9E24F29-20E8-4271-89A3-4940A5A044D7}.Release|Any CPU.Build.0 = Release|Any CPU
{4DCF01D7-6DE0-471B-BB3B-6E28E9B001C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4DCF01D7-6DE0-471B-BB3B-6E28E9B001C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4DCF01D7-6DE0-471B-BB3B-6E28E9B001C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4DCF01D7-6DE0-471B-BB3B-6E28E9B001C1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@ -1,11 +0,0 @@
# Advent of Code
## Solutions organized by year, 1 file per day.
### [2022](https://github.com/TiagoRG/AdventOfCode/tree/main/AdventOfCode/Year2022)
* [Day 1](https://github.com/TiagoRG/AdventOfCode/tree/main/AdventOfCode/Year2022/Day1.cs)
* [Day 2](https://github.com/TiagoRG/AdventOfCode/tree/main/AdventOfCode/Year2022/Day2.cs)
* [Day 3](https://github.com/TiagoRG/AdventOfCode/tree/main/AdventOfCode/Year2022/Day3.cs)
* [Day 4](https://github.com/TiagoRG/AdventOfCode/tree/main/AdventOfCode/Year2022/Day4.cs)
* [Day 6](https://github.com/TiagoRG/AdventOfCode/tree/main/AdventOfCode/Year2022/Day6.cs)
* [Day 7](https://github.com/TiagoRG/AdventOfCode/tree/main/AdventOfCode/Year2022/Day7.cs)

9
Program.cs Normal file
View File

@ -0,0 +1,9 @@
using AdventOfCode.Year2022;
namespace AdventOfCode;
internal static class Program
{
public static void Main(string[] args)
=> Loader2022.Load();
}

View File

@ -1,10 +1,8 @@
using AdventOfCode.Year2022;
namespace AdventOfCode.Year2022;
namespace AdventOfCode;
class Program
public static class Loader2022
{
public static void Main(string[] args)
public static void Load()
{
new Day1();
new Day2();
@ -12,5 +10,6 @@ class Program
new Day4();
new Day6();
new Day7();
new Day8();
}
}