Skip to content

Instantly share code, notes, and snippets.

@csharpfritz
Created August 14, 2017 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csharpfritz/37b3d6f8759d6db1615ff58dd0ca746c to your computer and use it in GitHub Desktop.
Save csharpfritz/37b3d6f8759d6db1615ff58dd0ca746c to your computer and use it in GitHub Desktop.
RazorPages Startup config
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
// Includes support for Razor Pages and controllers.
services.AddMvc();
}
public void Configure(IApplicationBuilder app)
{
app.UseMvc();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment