Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created May 26, 2019 12:08
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 samueleresca/674d7d93f31b44fe72a2d4b90f12e079 to your computer and use it in GitHub Desktop.
Save samueleresca/674d7d93f31b44fe72a2d4b90f12e079 to your computer and use it in GitHub Desktop.
namespace HandsOn.Blazor
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
...
services.AddServerSideBlazor();
...
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment