fix core build and working directory

main
cosmonaut 2020-08-06 16:50:57 -07:00
parent 470d41ab70
commit ec7f4d1686
2 changed files with 5 additions and 7 deletions

2
.vscode/launch.json vendored
View File

@ -12,7 +12,7 @@
"LD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/lib64",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/osx"
},
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}

10
.vscode/tasks.json vendored
View File

@ -137,9 +137,8 @@
"command": "dotnet",
"args": [
"build",
"./ProjectName.Core.sln",
"-f",
"netcoreapp3.1"
"./ProjectName/ProjectName.Core.csproj",
"-p:SolutionDir=${workspaceFolder}/"
],
"type": "shell",
"group": {
@ -173,11 +172,10 @@
"command": "dotnet",
"args": [
"build",
"./ProjectName.Core.sln",
"./ProjectName/ProjectName.Core.csproj",
"--configuration",
"Release",
"-f",
"netcoreapp3.1"
"-p:SolutionDir=${workspaceFolder}/"
],
"type": "shell",
"group": {