Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save aramkoukia/b4d685a6e74bfd3b090c7809bde557bc to your computer and use it in GitHub Desktop.
configure .net core routes
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseMvc(routes =>
{
routes.MapWebApiRoute("DefaultApi", "api/{controller}/{id?}");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment