Skip to content

Commit 5d46e81

Browse files
authored
Update quickstart-csharp.md
Minor fixes to make the C# sample work.
1 parent fcdfea2 commit 5d46e81

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

articles/ai-services/agents/includes/quickstart-csharp.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,18 @@ ms.date: 01/15/2025
3535
| Run | Activation of an agent to begin running based on the contents of Thread. The agent uses its configuration and Thread’s Messages to perform tasks by calling models and tools. As part of a Run, the agent appends Messages to the Thread. |
3636
| Run Step | A detailed list of steps the agent took as part of a Run. An agent can call tools or create Messages during its run. Examining Run Steps allows you to understand how the agent is getting to its results. |
3737

38+
Create a .NET Console project.
39+
40+
```console
41+
dotnet new console
42+
```
43+
3844
Install the .NET package to your project. For example if you're using the .NET CLI, run the following command.
3945

46+
Note: Azure.AI.Projects is only available as a prelease version. Please use the "-prerelease" flag to add the package until a release version becomes available.
47+
4048
```console
41-
dotnet add package Azure.AI.Projects
49+
dotnet add package Azure.AI.Projects --prerelease
4250
dotnet add package Azure.Identity
4351
```
4452

0 commit comments

Comments
 (0)