replace '\' in filepaths with '/'
This commit is contained in:
@@ -6,8 +6,8 @@ public class Day08Test
|
||||
{
|
||||
private IPuzzleSolver<long> _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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user