Skip to content

Instantly share code, notes, and snippets.

@deanvanniekerk
Created May 30, 2018 08:05
Show Gist options
  • Save deanvanniekerk/54327e7a726726a57d607143af0f57ed to your computer and use it in GitHub Desktop.
Save deanvanniekerk/54327e7a726726a57d607143af0f57ed to your computer and use it in GitHub Desktop.
alchemylab - snip1
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
app.UseDeveloperExceptionPage();
app.UseStaticFiles();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
}
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment