What's New
🚀 API Endpoint Mapping
- Automatically detects and maps all HTTP endpoints in your codebase
- Supports both traditional controllers and minimal APIs
- Shows HTTP methods, routes, parameters, and authorization info
- Works with versioned APIs, areas, and custom route attributes
Example Output
API Endpoints:
- GET /api/users → GetAllUsers() [Authorize]
- POST /api/users → CreateUser(UserDto dto) [Admin]
- DELETE /api/users/{id} → DeleteUser(int id) [Authorize]
📦 Installation
dotnet tool update --global CodeContext.CLI