Skip to content

Instantly share code, notes, and snippets.

@AndyButland
Created May 9, 2022 14:54
Show Gist options
  • Save AndyButland/75a5e0ab6459091cdc01ad935125387c to your computer and use it in GitHub Desktop.
Save AndyButland/75a5e0ab6459091cdc01ad935125387c to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services.AddUmbraco(_env, _config)
.AddBackOffice()
.AddWebsite()
.AddComposers()
.Build();
services.AddMyLibrary();
services.ConfigureOptions<MyConfigureOptions>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment