You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-foundry/includes/get-started-fdp.md
+8-33Lines changed: 8 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,14 +46,16 @@ No installation is necessary to use the Azure AI Foundry portal.
46
46
```
47
47
1. Make sure to sign in using the CLI `az login` (or `az login --use-device-code`) command to authenticate before running your Python scripts.
48
48
49
-
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/python/mslearn-resources/quickstart).
49
+
> [!TIP]
50
+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/python/mslearn-resources/quickstart).
50
51
51
52
# [Java](#tab/java)
52
53
53
54
1. [Install Java and Azure CLI](../how-to/develop/install-cli-sdk.md?pivots=programming-language-java).
54
55
1. Make sure to sign in using the CLI `az login` (or `az login --use-device-code`) command to authenticate before running your Java scripts.
55
56
56
-
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/java/mslearn-resources/quickstart).
57
+
> [!TIP]
58
+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/java/mslearn-resources/quickstart).
57
59
58
60
# [JavaScript](#tab/javascript)
59
61
@@ -62,7 +64,8 @@ The scripts in this quickstart are also available on [GitHub](https://github.com
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/javascript/mslearn-resources/quickstart).
67
+
> [!TIP]
68
+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/javascript/mslearn-resources/quickstart).
66
69
67
70
# [C#](#tab/csharp)
68
71
@@ -73,50 +76,22 @@ The scripts in this quickstart are also available on [GitHub](https://github.com
73
76
74
77
1. Make sure to sign in using the CLI `az login` (or `az login --use-device-code`) command to authenticate before running your C# scripts.
75
78
76
-
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/csharp/mslearn-resources/quickstart).
79
+
> [!TIP]
80
+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/csharp/mslearn-resources/quickstart).
77
81
78
82
---
79
83
80
84
## Create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]
81
85
82
86
Use either the Azure AI Foundry portal or Azure CLI to create a project.
83
87
84
-
# [Azure AI Foundry portal](#tab/ai-foundry)
85
-
86
88
1. Sign in to the [Azure AI Foundry portal](https://ai.azure.com).
87
89
1. On the home page, select **Create the future**. This creates a project and also include steps to start working with a basic Agent.
88
90
89
91
:::image type="content" source="../media/quickstarts/start-building.png" alt-text="Screenshot shows how to start building an Agent in Azure AI Foundry portal.":::
90
92
91
93
1. Fill in a name for your project and select **Create**.
92
94
93
-
# [Azure CLI](#tab/azurecli)
94
-
95
-
To create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]:
96
-
97
-
1. Authenticate to your Azure subscription:
98
-
99
-
```azurecli
100
-
az login
101
-
```
102
-
103
-
For more information on authenticating, see [Authentication methods](/cli/azure/authenticate-azure-cli).
104
-
105
-
1. Create a resource group. For example in East US:
106
-
107
-
```azurecli
108
-
az group create --name {my_resource_group} --location eastus
109
-
```
110
-
111
-
1. Create a new Foundry resource and [!INCLUDE [fdp-project-name](fdp-project-name.md)]:
112
-
113
-
```azurecli
114
-
az cognitiveservices account create --resource-group {my_resource_group} --account-name {foundry_resource_name} --sku "S0"
Copy file name to clipboardExpand all lines: articles/ai-foundry/includes/install-csharp-packages.md
+12-32Lines changed: 12 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: include file
3
-
description: include file
2
+
title: Include file
3
+
description: Include file
4
4
author: pablolopes
5
5
ms.reviewer: pablolopes
6
6
ms.author: pablolopes
@@ -10,44 +10,24 @@ ms.date: 04/30/2025
10
10
ms.custom: include, build-2025
11
11
---
12
12
13
-
* To work with Azure AI services in your .NET project, you'll need to install several NuGet packages. There are two ways to add these packages:
14
-
15
-
* Option 1: Using the .NET CLI. You can add NuGet packages using the .NET CLI in the integrated terminal:
16
-
13
+
* To work with Azure AI services in your .NET project, you'll need to install several NuGet packages. You can add NuGet packages using the .NET CLI in the integrated terminal:
0 commit comments