Skip to content

Commit 3b5292a

Browse files
committed
add C# isolated packages to backend quickstarts
1 parent 7ddd22c commit 3b5292a

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

articles/azure-functions/durable/quickstart-mssql.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,16 @@ If this is not the case, we suggest you start with one of the following articles
4040
> [!NOTE]
4141
> If your app uses [Extension Bundles](../functions-bindings-register.md#extension-bundles), you should ignore this section as Extension Bundles removes the need for manual Extension management.
4242
43-
You will need to install the latest version of the `Microsoft.DurableTask.SqlServer.AzureFunctions` [Extension on NuGet](https://www.nuget.org/packages/Microsoft.DurableTask.SqlServer.AzureFunctions) on your app. This usually means to include a reference to it in your `.csproj` file and building the project.
43+
You'll need to install the latest version of the MSSQL storage provider Extension on NuGet. This usually means to include a reference to it in your `.csproj` file and building the project.
44+
45+
The Extension package to install depends on the .NET worker you are using:
46+
- For the _in-process_ .NET worker, install [`Microsoft.DurableTask.SqlServer.AzureFunctions`](https://www.nuget.org/packages/Microsoft.DurableTask.SqlServer.AzureFunctions).
47+
- For the _isolated_ .NET worker, install [`Microsoft.Azure.Functions.Worker.Extensions.DurableTask.SqlServer`](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.DurableTask.SqlServer).
4448

4549
You can install the Extension using the following [Azure Functions Core Tools CLI](../functions-run-local.md#install-the-azure-functions-core-tools) command
4650

4751
```cmd
48-
func extensions install --package Microsoft.DurableTask.SqlServer.AzureFunctions --version <latestVersionOnNuget>
52+
func extensions install --package <package name depending on your worker model> --version <latest version>
4953
```
5054

5155
For more information on installing Azure Functions Extensions via the Core Tools CLI, see [this guide](../functions-run-local.md#install-extensions).

articles/azure-functions/durable/quickstart-netherite.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,16 @@ If this isn't the case, we suggest you start with one of the following articles,
4141
> [!NOTE]
4242
> If your app uses [Extension Bundles](../functions-bindings-register.md#extension-bundles), you should ignore this section as Extension Bundles removes the need for manual Extension management.
4343
44-
You'll need to install the latest version of the `Microsoft.Azure.DurableTask.Netherite.AzureFunctions` [Extension on NuGet](https://www.nuget.org/packages/Microsoft.Azure.DurableTask.Netherite.AzureFunctions) on your app. This usually means to include a reference to it in your `.csproj` file and building the project.
44+
You'll need to install the latest version of the Netherite Extension on NuGet. This usually means to include a reference to it in your `.csproj` file and building the project.
45+
46+
The Extension package to install depends on the .NET worker you are using:
47+
- For the _in-process_ .NET worker, install [`Microsoft.Azure.DurableTask.Netherite.AzureFunctions`](https://www.nuget.org/packages/Microsoft.Azure.DurableTask.Netherite.AzureFunctions).
48+
- For the _isolated_ .NET worker, install [`Microsoft.Azure.Functions.Worker.Extensions.DurableTask.Netherite`](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.DurableTask.Netherite).
4549

4650
You can install the Extension using the following [Azure Functions Core Tools CLI](../functions-run-local.md#install-the-azure-functions-core-tools) command
4751

4852
```cmd
49-
func extensions install --package Microsoft.Azure.DurableTask.Netherite.AzureFunctions --version <latestVersionOnNuget>
53+
func extensions install --package <package name depending on your worker model> --version <latest version>
5054
```
5155

5256
For more information on installing Azure Functions Extensions via the Core Tools CLI, see [this guide](../functions-run-local.md#install-extensions).

0 commit comments

Comments
 (0)