Skip to content

Instantly share code, notes, and snippets.

@Mohammed-El-Nabulsi
Created April 15, 2016 18:42
Show Gist options
  • Save Mohammed-El-Nabulsi/40e372649f8f0635d4e4ae55e55e7042 to your computer and use it in GitHub Desktop.
Save Mohammed-El-Nabulsi/40e372649f8f0635d4e4ae55e55e7042 to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
}
public void Configure(IApplicationBuilder app)
{
app.UseIISPlatformHandler();
app.UseStaticFiles();
app.UseMvcWithDefaultRoute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment