Explorar el Código

Added a multi project launch profile for MSVS (#8876)

This allows to start all servers in debug mode automatically in MSVS >= 17.11
See https://devblogs.microsoft.com/visualstudio/multi-project-launch-configuration/ for details.
Lemongrass3110 hace 4 meses
padre
commit
fdf3efe1d3
Se han modificado 2 ficheros con 28 adiciones y 0 borrados
  1. 1 0
      .gitignore
  2. 27 0
      rAthena.slnLaunch

+ 1 - 0
.gitignore

@@ -116,6 +116,7 @@ Thumbs.db
 .vs
 *.VC.db
 *.VC.opendb
+*.slnLaunch.user
 
 /.idea/.name
 /.idea/misc.xml

+ 27 - 0
rAthena.slnLaunch

@@ -0,0 +1,27 @@
+[
+  {
+    "Name": "All Servers",
+    "Projects": [
+      {
+        "Path": "src\\login\\login-server.vcxproj",
+        "Action": "Start",
+        "DebugTarget": "Local Windows Debugger"
+      },
+      {
+        "Path": "src\\char\\char-server.vcxproj",
+        "Action": "Start",
+        "DebugTarget": "Local Windows Debugger"
+      },
+      {
+        "Path": "src\\map\\map-server.vcxproj",
+        "Action": "Start",
+        "DebugTarget": "Local Windows Debugger"
+      },
+      {
+        "Path": "src\\web\\web-server.vcxproj",
+        "Action": "Start",
+        "DebugTarget": "Local Windows Debugger"
+      }
+    ]
+  }
+]