Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created June 9, 2019 11:39
Show Gist options
  • Save kasunkv/1dfb21cf79c383ca98af909e2071d25d to your computer and use it in GitHub Desktop.
Save kasunkv/1dfb21cf79c383ca98af909e2071d25d to your computer and use it in GitHub Desktop.
Azure Functions V2 Startup Class
[assembly: FunctionsStartup(typeof(Startup))]
namespace Function.DependencyInjection.Timer
{
public class Startup : FunctionsStartup
{
public override void Configure(IFunctionsHostBuilder builder)
{
builder.Services.AddScoped<IHelloService, HelloService>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment