Skip to content

Commit

Permalink
Updated README sample code to show base class for Startup (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherhouse authored May 11, 2020
1 parent 88bab9f commit 22dfea4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ The `IServiceProvider` will automatically be created for you, so there's nothing


```C#
using Microsoft.Azure.Functions.Extensions.DependencyInjection;

[assembly: FunctionsStartup(typeof(Startup))]

public class Startup
public class Startup : FunctionsStartup
{
public override void Configure(IFunctionsHostBuilder builder)
{
Expand Down

0 comments on commit 22dfea4

Please sign in to comment.