roslyn:get_code_fixes
Retrieve available code fixes for specific diagnostics in .NET/C# files to resolve coding issues identified by the compiler.
Instructions
Get available code fixes for a specific diagnostic. Returns list of fix titles and descriptions. WORKFLOW: (1) get_diagnostics to find issues, (2) get_code_fixes to see options, (3) apply_code_fix to fix.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to source file | |
| diagnosticId | Yes | Diagnostic ID (e.g., CS0246) | |
| line | Yes | Zero-based line number | |
| column | Yes | Zero-based column number |