Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions agent-framework/tutorials/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ Before you begin, ensure you have the following:
**Note**: This demo uses Azure CLI credentials for authentication. Make sure you're logged in with `az login` and have access to the Azure OpenAI resource. For more information, see the [Azure CLI documentation](/cli/azure/authenticate-azure-cli-interactively). It is also possible to replace the `AzureCliCredential` with an `ApiKeyCredential` if you
have an api key and do not wish to use role based authentication, in which case `az login` is not required.

## Create a project

```powershell
cd (mkdir "AgentFrameworkQuickStart")
dotnet new console
Comment on lines +36 to +37
Copy link

@jozkee jozkee Oct 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
cd (mkdir "AgentFrameworkQuickStart")
dotnet new console
dotnet new console -o AgentFrameworkQuickStart
cd AgentFrameworkQuickStart

?

```

## Installing Packages

Packages will be published to [NuGet Gallery | MicrosoftAgentFramework](https://www.nuget.org/profiles/MicrosoftAgentFramework).
Expand Down