Skip to content

v1.1.0 - API Endpoint Mapping

Latest

Choose a tag to compare

@Nonanti Nonanti released this 12 Oct 10:58
· 2 commits to main since this release

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

Full Changelog

v1.0.0...v1.1.0