Skip to content

Commit e830712

Browse files
authored
Fix warnings about absolute links
1 parent 2e92e5e commit e830712

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ static class HelloSequence
132132

133133
## Configure storage
134134

135-
Your app needs a storage for runtime information. To use [Azurite](https://learn.microsoft.com/azure/storage/common/storage-use-azurite?tabs=visual-studio-code), which is an emulator for Azure Storage, set `AzureWebJobStorage` in _local.settings.json_ to `UseDevelopmentStorage=true`:
135+
Your app needs a storage for runtime information. To use [Azurite](../../storage/common/storage-use-azurite.md?tabs=visual-studio-code), which is an emulator for Azure Storage, set `AzureWebJobStorage` in _local.settings.json_ to `UseDevelopmentStorage=true`:
136136

137137
```json
138138
{
@@ -145,7 +145,7 @@ Your app needs a storage for runtime information. To use [Azurite](https://learn
145145
```
146146
You can install the Azurite extension on Visual Studio Code and start it by running `Azurite: Start` in the command palette.
147147

148-
There are other storage options you can use for your Durable Functions app. See [Durable Functions storage providers](https://learn.microsoft.com/azure/azure-functions/durable/durable-functions-storage-providers) to learn more about different storage options and what benefits they provide.
148+
There are other storage options you can use for your Durable Functions app. See [Durable Functions storage providers](durable-functions-storage-providers.md) to learn more about different storage options and what benefits they provide.
149149

150150

151151
## Test the function locally
@@ -219,7 +219,7 @@ To complete this tutorial:
219219

220220
* Install [Visual Studio 2022](https://visualstudio.microsoft.com/vs/). Make sure that the **Azure development** workload is also installed. Visual Studio 2019 also supports Durable Functions development, but the UI and steps differ.
221221

222-
* Verify that you have the [Azurite Emulator](../../storage/common//storage-use-azurite.md) installed and running.
222+
* Verify that you have the [Azurite Emulator](../../storage/common/storage-use-azurite.md) installed and running.
223223

224224
[!INCLUDE [quickstarts-free-trial-note](../../../includes/quickstarts-free-trial-note.md)]
225225

@@ -247,7 +247,7 @@ The Azure Functions template creates a project that can be published to a functi
247247

248248
5. Select **Create** to create an empty function project. This project has the basic configuration files needed to run your functions. Make sure the box for _"Use Azurite for runtime storage account (AzureWebJobStorage)"_ is checked. This will use Azurite emulator.
249249

250-
Note that there are other storage options you can use for your Durable Functions app. See [Durable Functions storage providers](https://learn.microsoft.com/azure/azure-functions/durable/durable-functions-storage-providers) to learn more about different storage options and what benefits they provide.
250+
Note that there are other storage options you can use for your Durable Functions app. See [Durable Functions storage providers](durable-functions-storage-providers.md) to learn more about different storage options and what benefits they provide.
251251

252252
## Add NuGet package references
253253

0 commit comments

Comments
 (0)