Skip to content

Commit 5b242e0

Browse files
committed
fix indentation
1 parent 3f166b9 commit 5b242e0

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

articles/ai-foundry/how-to/develop/vs-code-agents.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -290,19 +290,20 @@ In `Nuget.Config`, replace the following placeholders:
290290

291291
::: zone pivot="csharp"
292292

293+
Before running locally with `dotnet run`, ensure you have configured the required environment variables. You can obtain these values from the Azure AI Foundry portal.
293294
Before running locally with `dotnet run`, ensure you have configured the required environment variables. You can obtain these values from the Azure AI Foundry portal.
294295

295-
1. Configure your environment variables based on your operating system:
296+
1. Configure your environment variables based on your operating system:
296297

297-
#### [Windows (PowerShell)](#tab/windows-powershell)
298+
#### [Windows (PowerShell)](#tab/windows-powershell)
298299

299300
```powershell
300301
$env:AZURE_OPENAI_ENDPOINT="https://your-resource-name.openai.azure.com/"
301302
$env:MODEL_DEPLOYMENT_NAME="your-deployment-name"
302303
$env:AZURE_OPENAI_API_KEY="your-api-key"
303304
```
304305

305-
#### [Windows (Command Prompt)](#tab/windows-command-prompt)
306+
#### [Windows (Command Prompt)](#tab/windows-command-prompt)
306307

307308
```dos
308309
set AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com/
@@ -318,13 +319,13 @@ Before running locally with `dotnet run`, ensure you have configured the require
318319
export AZURE_OPENAI_API_KEY="your-api-key"
319320
```
320321

321-
---
322+
---
322323

323324
1. Run the application using the following commands:
324-
```bash
325-
dotnet build
326-
dotnet run
327-
```
325+
```bash
326+
dotnet build
327+
dotnet run
328+
```
328329
::: zone-end
329330

330331
::: zone pivot="python"

0 commit comments

Comments
 (0)