From cf310c6630a5af47a3182028891c5971e6ec1407 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:59:59 -0600 Subject: [PATCH] chore: setup for day 12 --- .../.idea/indexLayout.xml | 1 + .../GardenGroups.Tests.csproj | 19 +++++++++++++++++ 12/GardenGroups/GardenGroups.csproj | 21 +++++++++++++++++++ 12/GardenGroups/Program.cs | 2 ++ AdventOfCode2024.sln | 16 ++++++++++++++ 5 files changed, 59 insertions(+) create mode 100644 12/GardenGroups.Tests/GardenGroups.Tests.csproj create mode 100644 12/GardenGroups/GardenGroups.csproj create mode 100644 12/GardenGroups/Program.cs diff --git a/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml b/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml index 0d1694e..70887b5 100644 --- a/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml +++ b/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml @@ -16,6 +16,7 @@ 09/INPUT.txt 09/PROBLEM.md 10 + 12 README.md diff --git a/12/GardenGroups.Tests/GardenGroups.Tests.csproj b/12/GardenGroups.Tests/GardenGroups.Tests.csproj new file mode 100644 index 0000000..d049900 --- /dev/null +++ b/12/GardenGroups.Tests/GardenGroups.Tests.csproj @@ -0,0 +1,19 @@ + + + + Exe + net9.0 + enable + enable + CA1822 + + + + + + + + + + + diff --git a/12/GardenGroups/GardenGroups.csproj b/12/GardenGroups/GardenGroups.csproj new file mode 100644 index 0000000..e7fac23 --- /dev/null +++ b/12/GardenGroups/GardenGroups.csproj @@ -0,0 +1,21 @@ + + + + Exe + net9.0 + enable + enable + CA1822 + + + + + + + + + PreserveNewest + + + + diff --git a/12/GardenGroups/Program.cs b/12/GardenGroups/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/12/GardenGroups/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/AdventOfCode2024.sln b/AdventOfCode2024.sln index a5701e0..3fc5af8 100644 --- a/AdventOfCode2024.sln +++ b/AdventOfCode2024.sln @@ -88,6 +88,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlutonianPebbles", "11\Plut EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlutonianPebbles.Tests", "11\PlutonianPebbles.Tests\PlutonianPebbles.Tests.csproj", "{47276FDB-9A8C-467F-991F-C57AB22DF2B5}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "12", "12", "{8700A6AE-B77C-4B5B-AD15-6E285D43EC78}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GardenGroups", "12\GardenGroups\GardenGroups.csproj", "{9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GardenGroups.Tests", "12\GardenGroups.Tests\GardenGroups.Tests.csproj", "{0214851E-4415-4966-92D8-46809BD13721}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -185,6 +191,14 @@ Global {47276FDB-9A8C-467F-991F-C57AB22DF2B5}.Debug|Any CPU.Build.0 = Debug|Any CPU {47276FDB-9A8C-467F-991F-C57AB22DF2B5}.Release|Any CPU.ActiveCfg = Release|Any CPU {47276FDB-9A8C-467F-991F-C57AB22DF2B5}.Release|Any CPU.Build.0 = Release|Any CPU + {9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Release|Any CPU.Build.0 = Release|Any CPU + {0214851E-4415-4966-92D8-46809BD13721}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0214851E-4415-4966-92D8-46809BD13721}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0214851E-4415-4966-92D8-46809BD13721}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0214851E-4415-4966-92D8-46809BD13721}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(NestedProjects) = preSolution {1AFE2FF1-A55D-4D86-A9BB-9875CA0D14D8} = {270B7829-6D23-4B34-91FE-D87D533AF2AB} @@ -209,5 +223,7 @@ Global {2FACCE14-0E91-4FAA-9105-711A2B4428C3} = {7AB34145-87D1-4BB5-AF9C-E0239F8BE1DB} {D5FB6D59-FD68-4186-AE98-585B62EF1E4E} = {F2904315-B827-476F-8CDE-99D2EF115F0A} {47276FDB-9A8C-467F-991F-C57AB22DF2B5} = {F2904315-B827-476F-8CDE-99D2EF115F0A} + {9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C} = {8700A6AE-B77C-4B5B-AD15-6E285D43EC78} + {0214851E-4415-4966-92D8-46809BD13721} = {8700A6AE-B77C-4B5B-AD15-6E285D43EC78} EndGlobalSection EndGlobal