Skip to content

Instantly share code, notes, and snippets.

@jiimaho
Created December 15, 2019 22:19
Show Gist options
  • Save jiimaho/b5d4c488c96c2667c94c249458e9d61a to your computer and use it in GitHub Desktop.
Save jiimaho/b5d4c488c96c2667c94c249458e9d61a to your computer and use it in GitHub Desktop.
Pseudocode: relation between UseDefaultFiles and UseStaticFiles
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app)
{
// ...
app.UseDefaultFiles();
app.UseStaticFiles();
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment