From d5a6a3622cddc9080d14d4f0a2027aac03d663da Mon Sep 17 00:00:00 2001
From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com>
Date: Tue, 10 Dec 2024 00:30:53 -0600
Subject: [PATCH] chore: setup for day 10
---
.../.idea/indexLayout.xml | 1 +
10/HoofIt.Tests/HoofIt.Tests.csproj | 19 +++++++++++++++++
10/HoofIt/HoofIt.csproj | 21 +++++++++++++++++++
10/HoofIt/Program.cs | 2 ++
4 files changed, 43 insertions(+)
create mode 100644 10/HoofIt.Tests/HoofIt.Tests.csproj
create mode 100644 10/HoofIt/HoofIt.csproj
create mode 100644 10/HoofIt/Program.cs
diff --git a/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml b/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml
index d1c08f7..9d87670 100644
--- a/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml
+++ b/.idea/.idea.AdventOfCode2024/.idea/indexLayout.xml
@@ -13,6 +13,7 @@
05/PROBLEM.md
06
08
+ 10
README.md
diff --git a/10/HoofIt.Tests/HoofIt.Tests.csproj b/10/HoofIt.Tests/HoofIt.Tests.csproj
new file mode 100644
index 0000000..4b1cbc5
--- /dev/null
+++ b/10/HoofIt.Tests/HoofIt.Tests.csproj
@@ -0,0 +1,19 @@
+
+
+
+ Exe
+ net9.0
+ enable
+ enable
+ CA1822
+
+
+
+
+
+
+
+
+
+
+
diff --git a/10/HoofIt/HoofIt.csproj b/10/HoofIt/HoofIt.csproj
new file mode 100644
index 0000000..89d1400
--- /dev/null
+++ b/10/HoofIt/HoofIt.csproj
@@ -0,0 +1,21 @@
+
+
+
+ Exe
+ net9.0
+ enable
+ enable
+ CA1822
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+
+
diff --git a/10/HoofIt/Program.cs b/10/HoofIt/Program.cs
new file mode 100644
index 0000000..3751555
--- /dev/null
+++ b/10/HoofIt/Program.cs
@@ -0,0 +1,2 @@
+// See https://aka.ms/new-console-template for more information
+Console.WriteLine("Hello, World!");