fix core launch

pull/1/head
cosmonaut 2020-08-06 15:26:46 -07:00
parent a8e8402833
commit a4a2a8e719
3 changed files with 7 additions and 7 deletions

2
.vscode/launch.json vendored
View File

@ -12,7 +12,7 @@
"LD_LIBRARY_PATH": "${workspaceFolder}/KavTest/bin/Debug/netcoreapp3.1/lib64", "LD_LIBRARY_PATH": "${workspaceFolder}/KavTest/bin/Debug/netcoreapp3.1/lib64",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/KavTest/bin/Debug/netcoreapp3.1/osx" "DYLD_LIBRARY_PATH": "${workspaceFolder}/KavTest/bin/Debug/netcoreapp3.1/osx"
}, },
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}/KavTest/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",
"./KavTest.Core.sln", "./KavTest/KavTest.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",
"./KavTest.Core.sln", "./KavTest/KavTest.Core.csproj",
"--configuration", "--configuration",
"Release", "Release",
"-f", "-p:SolutionDir=${workspaceFolder}/"
"netcoreapp3.1"
], ],
"type": "shell", "type": "shell",
"group": { "group": {

View File

@ -25,6 +25,8 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\FNA\FNA.Core.csproj"/> <ProjectReference Include="..\FNA\FNA.Core.csproj"/>
<ProjectReference Include="..\encompass-cs\encompass-cs\encompass-cs.csproj" /> <ProjectReference Include="..\encompass-cs\encompass-cs\encompass-cs.csproj" />
<ProjectReference Include="..\Kav\Kav.csproj" />
<ProjectReference Include="..\Smuggler\Smuggler.csproj" />
</ItemGroup> </ItemGroup>
<Import Project="..\build\CopyFNALibs.targets"/> <Import Project="..\build\CopyFNALibs.targets"/>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />