Notes.txt 907 B

123456789101112131415161718192021222324252627282930
  1. // Debugging Unmanaged Code, example invocation
  2. /usr/local/share/dotnet/dotnet exec --additionalprobingpath /Users/josh/.nuget/packages /Users/josh/Dev/atomic/AtomicGameEngine/Script/AtomicNET/AtomicNETCore/bin/Debug/netcoreapp1.0/AtomicNETCore.dll
  3. // Example launch.json
  4. {
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": ".NET Core Launch (console)",
  9. "type": "coreclr",
  10. "request": "launch",
  11. "preLaunchTask": "build",
  12. "program": "${workspaceRoot}/AtomicTest/bin/Debug/netcoreapp1.0/AtomicTest.dll",
  13. "args": [],
  14. "cwd": "${workspaceRoot}",
  15. "stopAtEntry": false,
  16. "externalConsole": false
  17. },
  18. {
  19. "name": ".NET Core Attach",
  20. "type": "coreclr",
  21. "request": "attach",
  22. "processId": 0
  23. }
  24. ]
  25. }
  26. // Example tasks.json