Skip to content

Instantly share code, notes, and snippets.

@davidfowl
davidfowl / MinimalAPIs.md
Last active September 15, 2024 18:58
Minimal APIs at a glance
@coretravis
coretravis / SpaStartupClass.cs
Last active July 11, 2020 01:10
Simple SPA .Net core Routing
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{