Skip to content

Commit b1011a4

Browse files
authored
Merge pull request #90629 from edvinkugelberg/patch-1
Fixes compile error in code snippet
2 parents 314ee55 + fdde84f commit b1011a4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

articles/azure-functions/functions-dotnet-dependency-injection.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,10 @@ namespace MyNamespace
304304
.AddJsonFile(Path.Combine(context.ApplicationRootPath, $"appsettings.{context.EnvironmentName}.json"), optional: true, reloadOnChange: false)
305305
.AddEnvironmentVariables();
306306
}
307+
308+
public override void Configure(IFunctionsHostBuilder builder)
309+
{
310+
}
307311
}
308312
}
309313
```

0 commit comments

Comments
 (0)