launch.json•1.67 kB
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "http (55123)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build",
"program": "${workspaceFolder}/bin/Debug/net9.0/unity-mcp-server.exe",
"args": [
"--port=55123",
"--plugin-timeout=30000",
"--client-transport=http"
]
},
{
"name": "http (9090)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build",
"program": "${workspaceFolder}/bin/Debug/net9.0/unity-mcp-server.exe",
"args": [
"--port=9090",
"--plugin-timeout=30000",
"--client-transport=http"
]
},
{
"name": "stdio (9090)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build",
"program": "${workspaceFolder}/bin/Debug/net9.0/unity-mcp-server.exe",
"args": [
"--port=9090",
"--plugin-timeout=15000",
"--client-transport=stdio"
]
},
{
"name": "C#: Debug",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/Server/com.IvanMurzak.Unity.MCP.Server.csproj"
}
]
}