Skip to content

Commit e6b594f

Browse files
Merge pull request #274283 from mattchenderson/templateTactics
replacing template code reference with inline block
2 parents 1cbb9fe + d36619c commit e6b594f

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

articles/azure-functions/migrate-version-1-version-4.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,15 @@ When you migrate to version 4.x, make sure that your local.settings.json file ha
302302
303303
# [.NET 6 (in-process model)](#tab/net6-in-proc)
304304

305-
:::code language="json" source="~/functions-quickstart-templates/Functions.Templates/ProjectTemplate_v4.x/CSharp/local.settings.json":::
305+
```json
306+
{
307+
"IsEncrypted": false,
308+
"Values": {
309+
"AzureWebJobsStorage": "AzureWebJobsStorageConnectionStringValue",
310+
"FUNCTIONS_WORKER_RUNTIME": "dotnet"
311+
}
312+
}
313+
```
306314

307315
---
308316

articles/azure-functions/migrate-version-3-version-4.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,15 @@ When you migrate to version 4.x, make sure that your local.settings.json file ha
215215
216216
# [.NET 6 (in-process model)](#tab/net6-in-proc)
217217

218-
:::code language="json" source="~/functions-quickstart-templates/Functions.Templates/ProjectTemplate_v4.x/CSharp/local.settings.json":::
218+
```json
219+
{
220+
"IsEncrypted": false,
221+
"Values": {
222+
"AzureWebJobsStorage": "AzureWebJobsStorageConnectionStringValue",
223+
"FUNCTIONS_WORKER_RUNTIME": "dotnet"
224+
}
225+
}
226+
```
219227

220228
---
221229

0 commit comments

Comments
 (0)