Created
April 15, 2016 18:42
-
-
Save Mohammed-El-Nabulsi/40e372649f8f0635d4e4ae55e55e7042 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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