replace '\' in filepaths with '/'

This commit is contained in:
2025-12-14 15:02:19 +01:00
parent 3888fd23a8
commit e68be83627
12 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ public class Day02Test
{
private readonly IPuzzleSolver<long> _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()
{