From 71b173fa7a9f84b507c022b8c1841dde09053098 Mon Sep 17 00:00:00 2001 From: Eric StJohn Date: Thu, 9 Oct 2025 15:01:31 -0700 Subject: [PATCH] Add project creation instructions to quick-start guide Added instructions for creating a new project using PowerShell. --- agent-framework/tutorials/quick-start.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/agent-framework/tutorials/quick-start.md b/agent-framework/tutorials/quick-start.md index 3857d19c..3f4dbe30 100644 --- a/agent-framework/tutorials/quick-start.md +++ b/agent-framework/tutorials/quick-start.md @@ -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 +``` + ## Installing Packages Packages will be published to [NuGet Gallery | MicrosoftAgentFramework](https://www.nuget.org/profiles/MicrosoftAgentFramework).