Files
MediaPipe.NET/.vscode/tasks.json
Speykious b5f3b54b15 Huge update to get on par with MediaPipeUnityPlugin (#39)
* Use new MediaPipe packages and update version

* Apply updates from MediaPipeUnityPlugin

All while keeping C pointers like `void*` instead of `IntPtr`
and various other practices.

* Add VSCode task to debug tests

* Fix unset freeHGlobal delegate

This can happen because the static code of the NativeMethods class
could have not run, for some reason...

* Fix all examples

* Fix import reordering
2022-07-30 14:37:17 +08:00

43 lines
1.2 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/MediaPipe.NET.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": ".NET Core Test with debugger (that one crashing test)",
"type": "process",
"isBackground": true,
"command": "dotnet",
"args": [
"test",
"--logger",
"console;verbosity=detailed"
],
"options": {
"cwd": "${workspaceFolder}/Mediapipe.Net.Tests",
"env": {
"VSTEST_HOST_DEBUG": "1"
},
},
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
]
}