Moved .vscode to root directory.

This commit is contained in:
Harrison Deng 2022-05-18 22:02:37 -05:00
parent bd51a23da3
commit be2cf466b4
2 changed files with 5 additions and 5 deletions

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}/bin/Debug/net6.0/DotNetResxUtils.dll",
"program": "${workspaceFolder}/DotNetResxUtils/bin/Debug/net6.0/DotNetResxUtils.dll",
"args": [],
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}/DotNetResxUtils",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false

View File

@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/DotNetResxUtils.csproj",
"${workspaceFolder}/DotNetResxUtils/DotNetResxUtils.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/DotNetResxUtils.csproj",
"${workspaceFolder}/DotNetResxUtils/DotNetResxUtils.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
@ -33,7 +33,7 @@
"watch",
"run",
"--project",
"${workspaceFolder}/DotNetResxUtils.csproj"
"${workspaceFolder}/DotNetResxUtils/DotNetResxUtils.csproj"
],
"problemMatcher": "$msCompile"
}