diff --git a/AdventOfCode2025/AdventOfCode2025.csproj b/AdventOfCode2025/AdventOfCode2025.csproj
index 88cf5a7..152fed4 100644
--- a/AdventOfCode2025/AdventOfCode2025.csproj
+++ b/AdventOfCode2025/AdventOfCode2025.csproj
@@ -20,6 +20,10 @@
PreserveNewest
+
+
+ PreserveNewest
+
diff --git a/AdventOfCode2025/Program.cs b/AdventOfCode2025/Program.cs
index 3c3b3c3..6f8159e 100644
--- a/AdventOfCode2025/Program.cs
+++ b/AdventOfCode2025/Program.cs
@@ -6,4 +6,7 @@ var dayOneInput = await File.ReadAllTextAsync("./Input/DayOne.txt");
AdventSolver.Solve(dayOneInput, 1, "Secret Entrance");
var dayTwoInput = await File.ReadAllTextAsync("./Input/DayTwo.txt");
-AdventSolver.Solve(dayTwoInput, 2, "Gift Shop");
\ No newline at end of file
+AdventSolver.Solve(dayTwoInput, 2, "Gift Shop");
+
+var dayThreeInput = await File.ReadAllTextAsync("./Input/Test.txt");
+AdventSolver.Solve(dayThreeInput, 3, "Lobby");
\ No newline at end of file