From 4be26e77d3906172b703aa5006e453a8ca7f2c5b Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Sun, 22 Nov 2020 17:01:04 -0800 Subject: [PATCH] fix incorrect project names --- .vscode/tasks.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7af5249..fd135e4 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -223,7 +223,7 @@ "command": "MsBuild.exe", "args": [ "-restore:True", - "${workspaceFolder}/Anathema.Framework.sln", + "${workspaceFolder}/ProjectName.Framework.sln", "-p:Configuration=Debug", "-p:Platform=x64" ], @@ -236,9 +236,9 @@ }, { "label": "Run: Framework Debug", - "command": "Anathema.exe", + "command": "ProjectName.exe", "options": { - "cwd": "${workspaceFolder}/Anathema/bin/Debug/net48" + "cwd": "${workspaceFolder}/ProjectName/bin/Debug/net48" }, "type": "process", "group": { @@ -266,7 +266,7 @@ "command": "MsBuild.exe", "args": [ "-restore:True", - "${workspaceFolder}/Anathema.Framework.sln", + "${workspaceFolder}/ProjectName.Framework.sln", "-p:Configuration=Release", "-p:Platform=x64" ], @@ -279,9 +279,9 @@ }, { "label": "Run: Framework Release", - "command": "Anathema.exe", + "command": "ProjectName.exe", "options": { - "cwd": "${workspaceFolder}/Anathema/bin/Release/net48" + "cwd": "${workspaceFolder}/ProjectName/bin/Release/net48" }, "type": "process", "group": {