day15 solution

This commit is contained in:
Claudiu Farcas
2022-12-15 20:19:28 +02:00
parent cb1aeea711
commit 6cba23afc9
15 changed files with 463 additions and 8 deletions
+2 -2
View File
@@ -10,9 +10,9 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/day14/day14/bin/Debug/net6.0/day14.dll",
"program": "${workspaceFolder}/day15/day15/bin/Debug/net6.0/day15.dll",
"args": [],
"cwd": "${workspaceFolder}/day14/day14",
"cwd": "${workspaceFolder}/day15/day15",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
+3 -3
View File
@@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/day14/day14/day14.csproj",
"${workspaceFolder}/day15/day15/day15.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
@@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/day14/day14/day14.csproj",
"${workspaceFolder}/day15/day15/day15.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
@@ -33,7 +33,7 @@
"watch",
"run",
"--project",
"${workspaceFolder}/day14/day14/day14.csproj"
"${workspaceFolder}/day15/day15/day15.csproj"
],
"problemMatcher": "$msCompile"
}