From 3d29524ad481db34425ce18ede740bdedbdab7c1 Mon Sep 17 00:00:00 2001
From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com>
Date: Tue, 17 Dec 2024 23:41:27 -0600
Subject: [PATCH] chore: setup for day 17
---
.../ChronospatialComputer.Tests.csproj | 19 +++++++++++++++++
.../ChronospatialComputer.csproj | 21 +++++++++++++++++++
17/ChronospatialComputer/Program.cs | 2 ++
AdventOfCode2024.sln | 20 ++++++++++++++++++
4 files changed, 62 insertions(+)
create mode 100644 17/ChronospatialComputer.Tests/ChronospatialComputer.Tests.csproj
create mode 100644 17/ChronospatialComputer/ChronospatialComputer.csproj
create mode 100644 17/ChronospatialComputer/Program.cs
diff --git a/17/ChronospatialComputer.Tests/ChronospatialComputer.Tests.csproj b/17/ChronospatialComputer.Tests/ChronospatialComputer.Tests.csproj
new file mode 100644
index 0000000..c88a529
--- /dev/null
+++ b/17/ChronospatialComputer.Tests/ChronospatialComputer.Tests.csproj
@@ -0,0 +1,19 @@
+
+
+
+ Exe
+ net9.0
+ enable
+ enable
+ CA1822
+
+
+
+
+
+
+
+
+
+
+
diff --git a/17/ChronospatialComputer/ChronospatialComputer.csproj b/17/ChronospatialComputer/ChronospatialComputer.csproj
new file mode 100644
index 0000000..89d1400
--- /dev/null
+++ b/17/ChronospatialComputer/ChronospatialComputer.csproj
@@ -0,0 +1,21 @@
+
+
+
+ Exe
+ net9.0
+ enable
+ enable
+ CA1822
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+
+
diff --git a/17/ChronospatialComputer/Program.cs b/17/ChronospatialComputer/Program.cs
new file mode 100644
index 0000000..3751555
--- /dev/null
+++ b/17/ChronospatialComputer/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 8500db6..90a87ed 100644
--- a/AdventOfCode2024.sln
+++ b/AdventOfCode2024.sln
@@ -126,6 +126,16 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReindeerMaze", "16\Reindeer
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReindeerMaze.Tests", "16\ReindeerMaze.Tests\ReindeerMaze.Tests.csproj", "{F09B818A-200E-4456-A853-D2F01EB46EEF}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "17", "17", "{C0994C02-8EEC-44C3-845A-C221A7A084D6}"
+ ProjectSection(SolutionItems) = preProject
+ 17\PROBLEM.md = 17\PROBLEM.md
+ 17\INPUT.txt = 17\INPUT.txt
+ EndProjectSection
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChronospatialComputer", "17\ChronospatialComputer\ChronospatialComputer.csproj", "{C5C907A7-DAD1-419B-93A8-47AC6FC70DC7}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChronospatialComputer.Tests", "17\ChronospatialComputer.Tests\ChronospatialComputer.Tests.csproj", "{39A54627-9BBC-4528-9CD8-8FE2A0A152B6}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -263,6 +273,14 @@ Global
{F09B818A-200E-4456-A853-D2F01EB46EEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F09B818A-200E-4456-A853-D2F01EB46EEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F09B818A-200E-4456-A853-D2F01EB46EEF}.Release|Any CPU.Build.0 = Release|Any CPU
+ {C5C907A7-DAD1-419B-93A8-47AC6FC70DC7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C5C907A7-DAD1-419B-93A8-47AC6FC70DC7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C5C907A7-DAD1-419B-93A8-47AC6FC70DC7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C5C907A7-DAD1-419B-93A8-47AC6FC70DC7}.Release|Any CPU.Build.0 = Release|Any CPU
+ {39A54627-9BBC-4528-9CD8-8FE2A0A152B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {39A54627-9BBC-4528-9CD8-8FE2A0A152B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {39A54627-9BBC-4528-9CD8-8FE2A0A152B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {39A54627-9BBC-4528-9CD8-8FE2A0A152B6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{1AFE2FF1-A55D-4D86-A9BB-9875CA0D14D8} = {270B7829-6D23-4B34-91FE-D87D533AF2AB}
@@ -297,5 +315,7 @@ Global
{055CE647-AEFA-4501-B518-D16FF400E3D0} = {4FDDAE22-D617-47B7-AF61-35178EA7F576}
{5610FB67-037B-4C87-8D5D-E86D9D7DDB51} = {C50481FF-1766-4C51-BEE3-91BEC5642818}
{F09B818A-200E-4456-A853-D2F01EB46EEF} = {C50481FF-1766-4C51-BEE3-91BEC5642818}
+ {C5C907A7-DAD1-419B-93A8-47AC6FC70DC7} = {C0994C02-8EEC-44C3-845A-C221A7A084D6}
+ {39A54627-9BBC-4528-9CD8-8FE2A0A152B6} = {C0994C02-8EEC-44C3-845A-C221A7A084D6}
EndGlobalSection
EndGlobal