Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 327 Bytes

GiG.Core.Web.Versioning.md

File metadata and controls

14 lines (10 loc) · 327 Bytes

GiG.Core.Web.Versioning

This Library provides an API to add API Versioning.

Basic Usage

The below code needs to be added to the Startup.cs to register the API Versioning and API Versioned Explorer.

public void ConfigureServices(IServiceCollection services)
{
    services.AddApiExplorerVersioning();
}