fix incorrect project names

main
cosmonaut 2020-11-22 17:01:04 -08:00
parent d27aee2705
commit 4be26e77d3
1 changed files with 6 additions and 6 deletions

12
.vscode/tasks.json vendored
View File

@ -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": {