[solution]
Loads a standalone C# project (.csproj file) for analysis when no solution file exists.
| Name | Type | Required | Description |
|---|---|---|---|
| projectPath | string | Yes | The absolute path to the .csproj file to load. |
Load a standalone project
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "load_project",
"arguments": {
"projectPath": "/Users/dev/MyProject/MyProject.csproj"
}
}
}{
"success": true,
"data": {
"projectName": "MyProject",
"projectPath": "/Users/dev/MyProject/MyProject.csproj",
"frameworks": [
"net8.0"
]
},
"error": null
}Returns project information
Go to Playground to test this tool interactively.