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", "LD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/lib64",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/osx" "DYLD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/osx"
}, },
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1",
"console": "integratedTerminal", "console": "integratedTerminal",
"internalConsoleOptions": "neverOpen" "internalConsoleOptions": "neverOpen"
} }

10
.vscode/tasks.json vendored
View File

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