diff --git a/DotNetResxUtils/.vscode/launch.json b/.vscode/launch.json similarity index 85% rename from DotNetResxUtils/.vscode/launch.json rename to .vscode/launch.json index d89c191..35ec9ee 100644 --- a/DotNetResxUtils/.vscode/launch.json +++ b/.vscode/launch.json @@ -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 diff --git a/DotNetResxUtils/.vscode/tasks.json b/.vscode/tasks.json similarity index 80% rename from DotNetResxUtils/.vscode/tasks.json rename to .vscode/tasks.json index c25d850..a540d4f 100644 --- a/DotNetResxUtils/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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" }