Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Created May 6, 2017 19:39
Show Gist options
  • Select an option

  • Save aramkoukia/18c954f75d3d68ac9ba196156d987f9e to your computer and use it in GitHub Desktop.

Select an option

Save aramkoukia/18c954f75d3d68ac9ba196156d987f9e to your computer and use it in GitHub Desktop.
.net core configure web api
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc().AddWebApiConventions(); //Add WebApi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment