Browse Source

Use mono debugger for Android, as it's MUCH simpler.

CartBlanche 1 year ago
parent
commit
62db5f2cf6

+ 3 - 1
AutoPong/.vscode/launch.json

@@ -6,8 +6,10 @@
     "configurations": [
         {
             "name": "Android Debug",
-            "type": "coreclr",
+            "type": "mono",
             "request": "attach",
+            "address": "localhost",
+            "port": 10000,
 			"preLaunchTask": "Debug Android Build",
         },
         {

+ 4 - 2
NeonShooter/.vscode/launch.json

@@ -6,8 +6,10 @@
     "configurations": [
         {
             "name": "Android Debug",
-            "type": "coreclr",
-			"request": "attach",
+            "type": "mono",
+            "request": "attach",
+            "address": "localhost",
+            "port": 10000,
 			"preLaunchTask": "Debug Android Build",
         },
         {

+ 4 - 2
Platformer2D/.vscode/launch.json

@@ -6,8 +6,10 @@
     "configurations": [
         {
             "name": "Android Debug",
-            "type": "coreclr",
-			"request": "attach",
+            "type": "mono",
+            "request": "attach",
+            "address": "localhost",
+            "port": 10000,
 			"preLaunchTask": "Debug Android Build",
         },
         {

+ 4 - 2
ShipGame/.vscode/launch.json

@@ -6,8 +6,10 @@
     "configurations": [
         {
             "name": "Android Debug",
-            "type": "coreclr",
-			"request": "attach",
+            "type": "mono",
+            "request": "attach",
+            "address": "localhost",
+            "port": 10000,
 			"preLaunchTask": "Debug Android Build",
         },
         {