diff --git a/AoC_2025.Tests/Day01Test.cs b/AoC_2025.Tests/Day01Test.cs index 1dbe0b2..468099e 100644 --- a/AoC_2025.Tests/Day01Test.cs +++ b/AoC_2025.Tests/Day01Test.cs @@ -6,8 +6,8 @@ public class Day01Test { private readonly IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day01.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day01.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day01.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day01.txt"; public Day01Test() { diff --git a/AoC_2025.Tests/Day02Test.cs b/AoC_2025.Tests/Day02Test.cs index 85fb9ff..b3bb632 100644 --- a/AoC_2025.Tests/Day02Test.cs +++ b/AoC_2025.Tests/Day02Test.cs @@ -6,8 +6,8 @@ public class Day02Test { private readonly IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day02.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day02.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day02.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day02.txt"; public Day02Test() { diff --git a/AoC_2025.Tests/Day03Test.cs b/AoC_2025.Tests/Day03Test.cs index 5467a0d..404cfbe 100644 --- a/AoC_2025.Tests/Day03Test.cs +++ b/AoC_2025.Tests/Day03Test.cs @@ -6,8 +6,8 @@ public class Day03Test { private readonly IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day03.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day03.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day03.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day03.txt"; public Day03Test() { diff --git a/AoC_2025.Tests/Day04Test.cs b/AoC_2025.Tests/Day04Test.cs index e6baf53..e020bee 100644 --- a/AoC_2025.Tests/Day04Test.cs +++ b/AoC_2025.Tests/Day04Test.cs @@ -6,8 +6,8 @@ public class Day04Test { private readonly IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day04.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day04.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day04.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day04.txt"; public Day04Test() { diff --git a/AoC_2025.Tests/Day05Test.cs b/AoC_2025.Tests/Day05Test.cs index f96ecd7..bb8cab5 100644 --- a/AoC_2025.Tests/Day05Test.cs +++ b/AoC_2025.Tests/Day05Test.cs @@ -6,8 +6,8 @@ public class Day05Test { private readonly Day05 _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day05.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day05.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day05.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day05.txt"; public Day05Test() { diff --git a/AoC_2025.Tests/Day06Test.cs b/AoC_2025.Tests/Day06Test.cs index f51613c..d5443f4 100644 --- a/AoC_2025.Tests/Day06Test.cs +++ b/AoC_2025.Tests/Day06Test.cs @@ -6,8 +6,8 @@ public class Day06Test { private readonly IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day06.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day06.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day06.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day06.txt"; public Day06Test() { diff --git a/AoC_2025.Tests/Day07Test.cs b/AoC_2025.Tests/Day07Test.cs index 2756e52..b1014e1 100644 --- a/AoC_2025.Tests/Day07Test.cs +++ b/AoC_2025.Tests/Day07Test.cs @@ -6,8 +6,8 @@ public class Day07Test { private readonly IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day07.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day07.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day07.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day07.txt"; public Day07Test() { diff --git a/AoC_2025.Tests/Day08Test.cs b/AoC_2025.Tests/Day08Test.cs index aa75380..bc96649 100644 --- a/AoC_2025.Tests/Day08Test.cs +++ b/AoC_2025.Tests/Day08Test.cs @@ -6,8 +6,8 @@ public class Day08Test { private IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day08.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day08.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day08.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day08.txt"; public Day08Test() { diff --git a/AoC_2025.Tests/Day09Test.cs b/AoC_2025.Tests/Day09Test.cs index bb77d7c..f46c558 100644 --- a/AoC_2025.Tests/Day09Test.cs +++ b/AoC_2025.Tests/Day09Test.cs @@ -6,9 +6,9 @@ public class Day09Test { private IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day09.txt"; - private readonly string Test2InputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day09_2.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day09.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day09.txt"; + private readonly string Test2InputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day09_2.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day09.txt"; public Day09Test() { diff --git a/AoC_2025.Tests/Day10Test.cs b/AoC_2025.Tests/Day10Test.cs index 43cc4d3..c3387a3 100644 --- a/AoC_2025.Tests/Day10Test.cs +++ b/AoC_2025.Tests/Day10Test.cs @@ -6,8 +6,8 @@ public class Day10Test { private IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day10.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day10.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day10.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day10.txt"; public Day10Test() { diff --git a/AoC_2025.Tests/Day11Test.cs b/AoC_2025.Tests/Day11Test.cs index 93977cb..70a845d 100644 --- a/AoC_2025.Tests/Day11Test.cs +++ b/AoC_2025.Tests/Day11Test.cs @@ -6,9 +6,9 @@ public class Day11Test { private IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day11.txt"; - private readonly string Test2InputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day11_2.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day11.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day11.txt"; + private readonly string Test2InputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day11_2.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day11.txt"; public Day11Test() { diff --git a/AoC_2025.Tests/Day12Test.cs b/AoC_2025.Tests/Day12Test.cs index 6b2c36c..3f319a5 100644 --- a/AoC_2025.Tests/Day12Test.cs +++ b/AoC_2025.Tests/Day12Test.cs @@ -6,8 +6,8 @@ public class Day12Test { private IPuzzleSolver _sut; private static readonly string rootPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - private readonly string TestInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Test\day12.txt"; - private readonly string ProdInputPath = @$"{rootPath}\AoC-PuzzleInputs\2025\Prod\day12.txt"; + private readonly string TestInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Test/day12.txt"; + private readonly string ProdInputPath = @$"{rootPath}/AoC-PuzzleInputs/2025/Prod/day12.txt"; public Day12Test() {