mirror of
https://github.com/cosyneco/MediaPipe.NET.git
synced 2025-08-06 15:08:53 +08:00

* 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
43 lines
1.2 KiB
JSON
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": []
|
|
},
|
|
]
|
|
}
|