|
13 | 13 | "request": "launch",
|
14 | 14 | "preLaunchTask": "build-server",
|
15 | 15 | // "postDebugTask": "stop-all",
|
16 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server", |
| 16 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server", |
17 | 17 | "linux": {
|
18 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server.dll", |
| 18 | + // This is what you get from trusting ChatGPT |
| 19 | + // "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server.dll", |
| 20 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server.dll", |
| 21 | + |
19 | 22 | },
|
20 | 23 | "args": [],
|
21 | 24 | "cwd": "${workspaceFolder}/src/server/",
|
|
82 | 85 | "request": "launch",
|
83 | 86 | "preLaunchTask": "build-all",
|
84 | 87 | // "postDebugTask": "stop-all",
|
85 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server", |
| 88 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server", |
86 | 89 | "linux": {
|
87 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server.dll", |
| 90 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server.dll", |
88 | 91 | },
|
89 | 92 | "args": [],
|
90 | 93 | "cwd": "${workspaceFolder}/src/server/",
|
|
138 | 141 | "name": "Launch Server",
|
139 | 142 | "type": "coreclr",
|
140 | 143 | "request": "launch",
|
141 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server", |
| 144 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server", |
142 | 145 | "linux": {
|
143 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server.dll", |
| 146 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server.dll", |
144 | 147 | },
|
145 | 148 | "args": [],
|
146 | 149 | "cwd": "${workspaceFolder}/src/server/",
|
|
188 | 191 | "type": "coreclr",
|
189 | 192 | "request": "launch",
|
190 | 193 | "preLaunchTask": "build-server",
|
191 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server.exe", |
| 194 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server.exe", |
192 | 195 | "linux": {
|
193 |
| - "program": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/CodeProject.AI.Server.dll", |
| 196 | + "program": "${workspaceFolder}/src/server/bin/Debug/net9.0/CodeProject.AI.Server.dll", |
194 | 197 | },
|
195 | 198 | "args": [
|
196 | 199 | "--ModuleOptions:LaunchModules=false"
|
197 | 200 | ],
|
198 |
| - "cwd": "${workspaceFolder}/src/server/bin/Debug/${env:dotNetTarget}/", |
| 201 | + "cwd": "${workspaceFolder}/src/server/bin/Debug/net9.0/", |
199 | 202 | "stopAtEntry": false,
|
200 | 203 | /*
|
201 | 204 | "serverReadyAction": {
|
|
230 | 233 | "type": "coreclr",
|
231 | 234 | "request": "launch",
|
232 | 235 | "preLaunchTask": "build-yolo-net",
|
233 |
| - "program": "${workspaceFolder}/modules/ObjectDetectionYOLOv5Net/bin/Debug/${env:dotNetTarget}/ObjectDetectionYOLOv5Net", |
| 236 | + "program": "${workspaceFolder}/modules/ObjectDetectionYOLOv5Net/bin/Debug/net9.0/ObjectDetectionYOLOv5Net.exe", |
234 | 237 | "linux": {
|
235 |
| - "program": "${workspaceFolder}/modules/ObjectDetectionYOLOv5Net/bin/Debug/${env:dotNetTarget}/ObjectDetectionYOLOv5Net.dll", |
| 238 | + "program": "${workspaceFolder}/modules/ObjectDetectionYOLOv5Net/bin/Debug/net9.0/ObjectDetectionYOLOv5Net.dll", |
236 | 239 | },
|
237 | 240 | // "args": [ "--selftest" ],
|
238 | 241 | // "cwd": "${workspaceFolder}",
|
|
256 | 259 | },
|
257 | 260 | "name": "Object Detect YOLOv5 6.2",
|
258 | 261 | "type": "debugpy",
|
259 |
| - "python": "${workspaceFolder}/runtimes/bin/linux/python38/venv/bin/python", |
| 262 | + "python": "${workspaceFolder}/runtimes/bin/windows/python37/venv/Scripts/python", |
260 | 263 | "windows": {
|
261 | 264 | "python": "${workspaceFolder}/runtimes/bin/windows/python37/venv/Scripts/python"
|
262 | 265 | },
|
263 | 266 | "linux": {
|
264 |
| - "python": "${workspaceFolder}/runtimes/bin/linux/python38/venv/bin/python", |
| 267 | + "python": "${workspaceFolder}/runtimes/bin/ubuntu/python38/venv/bin/python", |
| 268 | + // "python": "${workspaceFolder}/runtimes/bin/debian/python38/venv/bin/python", |
265 | 269 | },
|
266 | 270 | "osx": {
|
267 | 271 | "python": "${workspaceFolder}/runtimes/bin/macos/python38/venv/bin/python",
|
|
332 | 336 | "type": "coreclr",
|
333 | 337 | "request": "launch",
|
334 | 338 | "preLaunchTask": "build-parsejson",
|
335 |
| - "program": "${workspaceFolder}/utils/ParseJSON/bin/Debug/${env:dotNetTarget}/ParseJSON", |
| 339 | + "program": "${workspaceFolder}/utils/ParseJSON/bin/Debug/net9.0/ParseJSON", |
336 | 340 | "linux": {
|
337 |
| - "program": "${workspaceFolder}/utils/ParseJSON/bin/Debug/${env:dotNetTarget}/ParseJSON.dll", |
| 341 | + "program": "${workspaceFolder}/utils/ParseJSON/bin/Debug/net9.0/ParseJSON.dll", |
338 | 342 | },
|
339 | 343 | "args": [ "$.Modules.ALPR.Platforms", "test.json" ],
|
340 | 344 | "cwd": "${workspaceFolder}/utils/ParseJSON/",
|
|
413 | 417 | "program": "object-detect.exe",
|
414 | 418 | "args": [ "run" ],
|
415 | 419 | "cwd": "${workspaceFolder}/src/demos/clients/Rust/object-detect/target/debug",
|
416 |
| - "preLaunchTask": "build-deno-rust", |
| 420 | + "preLaunchTask": "build-demo-rust", |
417 | 421 | "stopOnEntry": false,
|
418 | 422 | "env": {
|
419 | 423 | },
|
|
451 | 455 | "request": "launch",
|
452 | 456 | "preLaunchTask": "build-ai-explorer",
|
453 | 457 | "windows": {
|
454 |
| - "program": "${workspaceFolder}/src/demos/clients/Net/AiExplorer/bin/Debug/${env:dotNetTarget}-windows/AiExplorer.exe", |
| 458 | + "program": "${workspaceFolder}/src/demos/clients/Net/AiExplorer/bin/Debug/net9.0-windows/AiExplorer.exe", |
455 | 459 | },
|
456 | 460 | "args": [],
|
457 | 461 | "cwd": "${workspaceFolder}",
|
|
472 | 476 | "type": "coreclr",
|
473 | 477 | "request": "launch",
|
474 | 478 | "preLaunchTask": "build-json-client",
|
475 |
| - "program": "${workspaceFolder}/src/demos/clients/Net/JsonAPI/bin/Debug/${env:dotNetTarget}/JsonAPI", |
| 479 | + "program": "${workspaceFolder}/src/demos/clients/Net/JsonAPI/bin/Debug/net9.0/JsonAPI", |
476 | 480 | "linux": {
|
477 |
| - "program": "${workspaceFolder}/src/demos/clients/Net/JsonAPI/bin/Debug/${env:dotNetTarget}/JsonAPI.dll", |
478 |
| - }, |
479 |
| - "osx": { |
480 |
| - "program": "${workspaceFolder}/src/demos/clients/Net/JsonAPI/bin/Debug/${env:dotNetTarget}/JsonAPI.dll", |
| 481 | + "program": "${workspaceFolder}/src/demos/clients/Net/JsonAPI/bin/Debug/net9.0/JsonAPI.dll", |
481 | 482 | },
|
482 | 483 | "args": [],
|
483 | 484 | "cwd": "${workspaceFolder}/src/demos/clients/Net/JsonAPI/",
|
|
501 | 502 | "python": "${workspaceFolder}/runtimes/bin/windows/python39/venv/Scripts/python.exe"
|
502 | 503 | },
|
503 | 504 | "linux": {
|
504 |
| - "python": "${workspaceFolder}/runtimes/bin/linux/python38/venv/bin/python", |
| 505 | + "python": "${workspaceFolder}/runtimes/bin/ubuntu/python38/venv/bin/python", |
| 506 | + // "python": "${workspaceFolder}/runtimes/bin/debian/python38/venv/bin/python", |
505 | 507 | },
|
506 | 508 | "osx": {
|
507 | 509 | "python": "${workspaceFolder}/runtimes/bin/macos/python38/venv/bin/python",
|
|
528 | 530 |
|
529 | 531 | "name": "Python Simple Module",
|
530 | 532 | "type": "debugpy",
|
531 |
| - "python": "${workspaceFolder}/runtimes/bin/linux/python39/venv/bin/python", |
| 533 | + "python": "${workspaceFolder}/runtimes/bin/windows/python39/venv/Scripts/python", |
532 | 534 | "windows": {
|
533 | 535 | "python": "${workspaceFolder}/runtimes/bin/windows/python39/venv/Scripts/python"
|
534 | 536 | },
|
535 | 537 | "linux": {
|
536 |
| - "python": "${workspaceFolder}/runtimes/bin/linux/python38/venv/bin/python", |
| 538 | + "python": "${workspaceFolder}/runtimes/bin/ubuntu/python38/venv/bin/python", |
| 539 | + // "python": "${workspaceFolder}/runtimes/bin/debian/python38/venv/bin/python", |
537 | 540 | },
|
538 | 541 | "osx": {
|
539 | 542 | "python": "${workspaceFolder}/runtimes/bin/macos/python38/venv/bin/python",
|
|
563 | 566 |
|
564 | 567 | "name": "Python Long Process Module",
|
565 | 568 | "type": "debugpy",
|
566 |
| - "python": "${workspaceFolder}/runtimes/bin/linux/python39/venv/bin/python", |
| 569 | + "python": "${workspaceFolder}/runtimes/bin/windows/python39/venv/Scripts/python", |
567 | 570 | "windows": {
|
568 | 571 | "python": "${workspaceFolder}/runtimes/bin/windows/python39/venv/Scripts/python"
|
569 | 572 | },
|
570 | 573 | "linux": {
|
571 |
| - "python": "${workspaceFolder}/runtimes/bin/linux/python38/venv/bin/python", |
| 574 | + "python": "${workspaceFolder}/runtimes/bin/ubuntu/python38/venv/bin/python", |
| 575 | + // "python": "${workspaceFolder}/runtimes/bin/debian/python38/venv/bin/python", |
572 | 576 | },
|
573 | 577 | "osx": {
|
574 | 578 | "python": "${workspaceFolder}/runtimes/bin/macos/python38/venv/bin/python",
|
|
596 | 600 | "name": ".NET Simple Module",
|
597 | 601 | "type": "coreclr",
|
598 | 602 | "request": "launch",
|
599 |
| - "preLaunchTask": "build-demo-net", |
600 |
| - "program": "${workspaceFolder}/src/demos/modules/DotNetSimple/bin/Debug/${env:dotNetTarget}/DotNetSimple", |
| 603 | + "preLaunchTask": "demo_module_dotnetsimple", |
| 604 | + "program": "${workspaceFolder}/src/demos/modules/DotNetSimple/bin/Debug/net9.0/DotNetSimple", |
601 | 605 | "linux": {
|
602 |
| - "program": "${workspaceFolder}/src/demos/modules/DotNetSimple/bin/Debug/${env:dotNetTarget}/DotNetSimple.dll", |
| 606 | + "program": "${workspaceFolder}/src/demos/modules/DotNetSimple/bin/Debug/net9.0/DotNetSimple.dll", |
603 | 607 | },
|
604 | 608 | // "args": [ "--selftest" ],
|
605 | 609 | // "cwd": "${workspaceFolder}",
|
|
624 | 628 | "type": "coreclr",
|
625 | 629 | "request": "launch",
|
626 | 630 | "preLaunchTask": "build-demo_module_dotnetlongprocess",
|
627 |
| - "program": "${workspaceFolder}/src/demos/modules/DotNetLongProcess/bin/Debug/${env:dotNetTarget}/DotNetLongProcess", |
| 631 | + "program": "${workspaceFolder}/src/demos/modules/DotNetLongProcess/bin/Debug/net9.0/DotNetLongProcess", |
628 | 632 | "linux": {
|
629 |
| - "program": "${workspaceFolder}/src/demos/modules/DotNetLongProcess/bin/Debug/${env:dotNetTarget}/DotNetLongProcess.dll", |
| 633 | + "program": "${workspaceFolder}/src/demos/modules/DotNetLongProcess/bin/Debug/net9.0/DotNetLongProcess.dll", |
630 | 634 | },
|
631 | 635 | // "args": [ "--selftest" ],
|
632 | 636 | // "cwd": "${workspaceFolder}",
|
|
0 commit comments