Skip to content

Commit 1efe5c6

Browse files
committed
More fixes
1 parent d651a68 commit 1efe5c6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

articles/azure-functions/functions-bindings-register.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,16 @@ For a complete list of extension bundle releases and extension versions in each
4545

4646
## Explicitly install extensions
4747
::: zone pivot="programming-language-csharp"
48-
For compiled C# class library projects ([in-process](functions-dotnet-class-library.md) and [isolated worker process](dotnet-isolated-process-guide.md)), you install the NuGet packages for the extensions that you need as you normally would. For more information, see the [Visual Studio Code developer guide](functions-develop-vs-code.md?tabs=csharp#install-binding-extensions) or the [Visual Studio developer guide](functions-develop-vs.md#add-bindings).
48+
For compiled C# class library projects, you install the NuGet packages for the extensions that you need as you normally would in your apps. For more information, see the [Visual Studio Code developer guide](functions-develop-vs-code.md?tabs=csharp#install-binding-extensions) or the [Visual Studio developer guide](functions-develop-vs.md#add-bindings).
4949

50-
See the [extension bundles release page](https://github.com/Azure/azure-functions-extension-bundles/releases) to review combinations of extension versions that are verified to be compatible.
50+
Make sure to obtain the correct package because the namespace differs depending on the execution model:
51+
52+
| Execution model | Namespace |
53+
| ----- | ----- |
54+
| [Isolated worker process](dotnet-isolated-process-guide.md) | `Microsoft.Azure.Functions.Worker.Extensions.*`|
55+
| [In-process](functions-dotnet-class-library.md) | `Microsoft.Azure.WebJobs.Extensions.*` |
56+
57+
Functions provides extension bundles for non-.NET projects, which contain a full set of binding extensions that are verified to be compatible. If you're having compatibility problems between two or more binding extensions, see the [extension bundles release page](https://github.com/Azure/azure-functions-extension-bundles/releases) to review compatible combinations of extension versions.
5158
::: zone-end
5259
::: zone pivot="programming-language-python,programming-language-java,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-other"
5360
There are cases when you can't use extension bundles, such as when you need to use a specific prerelease version of a specific extension. In these rare cases, you must manually install any required binding extensions in a C# project file (*extensions.csproj*) that references the specific extensions required by your app.

0 commit comments

Comments
 (0)