launch.json 531 B

123456789101112131415161718
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "MonoGame Android Build, Deploy & Run",
  6. "type": "coreclr",
  7. "request": "launch",
  8. "program": "dotnet",
  9. "args": [
  10. "publish", "AdMob.Android.csproj", "-c", "Debug", "-f", "net8.0-android"
  11. ],
  12. "cwd": "${workspaceFolder}",
  13. "console": "integratedTerminal",
  14. "stopAtEntry": false,
  15. "postDebugTask": "Install and Run APK"
  16. }
  17. ]
  18. }