Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch from dotnet verb noun to dotnet noun verb #43917

Merged
merged 17 commits into from
Apr 2, 2025
46 changes: 35 additions & 11 deletions .openpublishing.redirection.core.json
Original file line number Diff line number Diff line change
Expand Up @@ -878,12 +878,12 @@
},
{
"source_path_from_root": "/docs/core/preview3/tools/dotnet-add-package.md",
"redirect_url": "/dotnet/core/tools/dotnet-add-package",
"redirect_url": "/dotnet/core/tools/dotnet-package-add",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/core/preview3/tools/dotnet-add-reference.md",
"redirect_url": "/dotnet/core/tools/dotnet-add-reference",
"redirect_url": "/dotnet/core/tools/dotnet-reference-add",
"redirect_document_id": true
},
{
Expand All @@ -901,7 +901,7 @@
},
{
"source_path_from_root": "/docs/core/preview3/tools/dotnet-list-reference.md",
"redirect_url": "/dotnet/core/tools/dotnet-list-reference",
"redirect_url": "/dotnet/core/tools/dotnet-reference-list",
"redirect_document_id": true
},
{
Expand Down Expand Up @@ -943,12 +943,12 @@
},
{
"source_path_from_root": "/docs/core/preview3/tools/dotnet-remove-package.md",
"redirect_url": "/dotnet/core/tools/dotnet-remove-package",
"redirect_url": "/dotnet/core/tools/dotnet-package-remove",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/core/preview3/tools/dotnet-remove-reference.md",
"redirect_url": "/dotnet/core/tools/dotnet-remove-reference",
"redirect_url": "/dotnet/core/tools/dotnet-reference-remove",
"redirect_document_id": true
},
{
Expand Down Expand Up @@ -1056,7 +1056,7 @@
},
{
"source_path_from_root": "/docs/core/testing/using-mstest-on-windows.md",
"redirect_url": "/dotnet/core/testing/unit-testing-with-mstest",
"redirect_url": "/dotnet/core/testing/unit-testing-csharp-with-mstest",
"redirect_document_id": true
},
{
Expand Down Expand Up @@ -1111,17 +1111,17 @@
},
{
"source_path_from_root": "/docs/core/testing/unit-testing-mstest-runner-exit-codes.md",
"redirect_url": "/dotnet/core/testing/unit-testing-platform-exit-codes",
"redirect_url": "/dotnet/core/testing/microsoft-testing-platform-exit-codes",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/core/testing/unit-testing-mstest-runner-extensions.md",
"redirect_url": "/dotnet/core/testing/unit-testing-platform-extensions",
"redirect_url": "/dotnet/core/testing/microsoft-testing-platform-extensions",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/core/testing/unit-testing-mstest-runner-integrations.md",
"redirect_url": "/dotnet/core/testing/unit-testing-platform-integration-dotnet-test",
"redirect_url": "/dotnet/core/testing/microsoft-testing-platform-integration-dotnet-test",
"redirect_document_id": true
},
{
Expand All @@ -1130,12 +1130,12 @@
},
{
"source_path_from_root": "/docs/core/testing/unit-testing-mstest-runner-telemetry.md",
"redirect_url": "/dotnet/core/testing/unit-testing-platform-telemetry",
"redirect_url": "/dotnet/core/testing/microsoft-testing-platform-telemetry",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/core/testing/unit-testing-mstest-runner-vs-vstest.md",
"redirect_url": "/dotnet/core/testing/unit-testing-platform-vs-vstest",
"redirect_url": "/dotnet/core/testing/microsoft-testing-platform-vs-vstest",
"redirect_document_id": true
},
{
Expand All @@ -1151,6 +1151,30 @@
"source_path_from_root": "/docs/core/tools/csproj.md",
"redirect_url": "/dotnet/core/project-sdk/msbuild-props"
},
{
"source_path_from_root": "/docs/core/tools/dotnet-add-package.md",
"redirect_url": "/dotnet/core/tools/dotnet-package-add"
},
{
"source_path_from_root": "/docs/core/tools/dotnet-list-package.md",
"redirect_url": "/dotnet/core/tools/dotnet-package-list"
},
{
"source_path_from_root": "/docs/core/tools/dotnet-remove-package.md",
"redirect_url": "/dotnet/core/tools/dotnet-package-remove"
},
{
"source_path_from_root": "/docs/core/tools/dotnet-add-reference.md",
"redirect_url": "/dotnet/core/tools/dotnet-reference-add"
},
{
"source_path_from_root": "/docs/core/tools/dotnet-list-reference.md",
"redirect_url": "/dotnet/core/tools/dotnet-reference-list"
},
{
"source_path_from_root": "/docs/core/tools/dotnet-remove-reference.md",
"redirect_url": "/dotnet/core/tools/dotnet-reference-remove"
},
{
"source_path_from_root": "/docs/core/tools/extensibility.md",
"redirect_url": "/dotnet/core/project-sdk/overview"
Expand Down
10 changes: 5 additions & 5 deletions docs/ai/how-to/app-service-aoai-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ az role assignment create --assignee "<managedIdentityObjectID>" \
1. Add the following NuGet packages to your app:

```dotnetcli
dotnet add package Azure.Identity
dotnet add package Azure.AI.OpenAI
dotnet add package Microsoft.Extensions.Azure
dotnet add package Microsoft.Extensions.AI
dotnet add package Microsoft.Extensions.AI.OpenAI
dotnet package add Azure.Identity
dotnet package add Azure.AI.OpenAI
dotnet package add Microsoft.Extensions.Azure
dotnet package add Microsoft.Extensions.AI
dotnet package add Microsoft.Extensions.AI.OpenAI
```

The preceding packages each handle the following concerns for this scenario:
Expand Down
4 changes: 2 additions & 2 deletions docs/ai/how-to/content-filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To use the sample code in this article, you need to create and assign a content
1. Add the [`Azure.AI.OpenAI`](https://www.nuget.org/packages/Azure.AI.OpenAI) NuGet package to your project.

```dotnetcli
dotnet add package Azure.AI.OpenAI
dotnet package add Azure.AI.OpenAI
```

1. Create a simple chat completion flow in your .NET app using the `AzureOpenAiClient`. Replace the `YOUR_MODEL_ENDPOINT` and `YOUR_MODEL_DEPLOYMENT_NAME` values with your own.
Expand All @@ -49,4 +49,4 @@ The response was filtered due to the prompt triggering Azure OpenAI's content ma

* [Create and assign a content filter](/azure/ai-services/openai/how-to/content-filters)
* [Content Filtering concepts](/azure/ai-services/openai/concepts/content-filter)
* [Create a chat app](/dotnet/ai/quickstarts/prompt-model)
* [Create a chat app](../quickstarts/prompt-model.md)
22 changes: 11 additions & 11 deletions docs/ai/quickstarts/build-chat-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@ Complete the following steps to create a .NET console app to connect to an AI mo
:::zone target="docs" pivot="azure-openai"

```bash
dotnet add package Azure.Identity
dotnet add package Azure.AI.OpenAI
dotnet add package Microsoft.Extensions.AI.OpenAI
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add Azure.Identity
dotnet package add Azure.AI.OpenAI
dotnet package add Microsoft.Extensions.AI.OpenAI
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

:::zone-end

:::zone target="docs" pivot="openai"

```bash
dotnet add package OpenAI
dotnet add package Microsoft.Extensions.AI.OpenAI
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add OpenAI
dotnet package add Microsoft.Extensions.AI.OpenAI
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

:::zone-end
Expand Down Expand Up @@ -153,5 +153,5 @@ azd down

## Next steps

- [Quickstart - Chat with a local AI model](/dotnet/ai/quickstarts/chat-local-model)
- [Generate images using AI with .NET](/dotnet/ai/quickstarts/generate-images)
- [Quickstart - Chat with a local AI model](chat-local-model.md)
- [Generate images using AI with .NET](generate-images.md)
28 changes: 14 additions & 14 deletions docs/ai/quickstarts/build-vector-search-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ Complete the following steps to create a .NET console app that can:
:::zone target="docs" pivot="azure-openai"

```bash
dotnet add package Azure.Identity
dotnet add package Azure.AI.OpenAI
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
dotnet add package Microsoft.Extensions.VectorData.Abstractions --prerelease
dotnet add package Microsoft.SemanticKernel.Connectors.InMemory --prerelease
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add Azure.Identity
dotnet package add Azure.AI.OpenAI
dotnet package add Microsoft.Extensions.AI.OpenAI --prerelease
dotnet package add Microsoft.Extensions.VectorData.Abstractions --prerelease
dotnet package add Microsoft.SemanticKernel.Connectors.InMemory --prerelease
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

The following list describes what each package is used for in the `VectorDataAI` app:
Expand All @@ -93,11 +93,11 @@ Complete the following steps to create a .NET console app that can:
:::zone target="docs" pivot="openai"

```bash
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
dotnet add package Microsoft.Extensions.VectorData.Abstractions --prerelease
dotnet add package Microsoft.SemanticKernel.Connectors.InMemory --prerelease
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add Microsoft.Extensions.AI.OpenAI --prerelease
dotnet package add Microsoft.Extensions.VectorData.Abstractions --prerelease
dotnet package add Microsoft.SemanticKernel.Connectors.InMemory --prerelease
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

The following list describes what each package is used for in the `VectorDataAI` app:
Expand Down Expand Up @@ -205,5 +205,5 @@ azd down

## Next steps

- [Quickstart - Chat with a local AI model](/dotnet/ai/quickstarts/chat-local-model)
- [Generate images using AI with .NET](/dotnet/ai/quickstarts/generate-images)
- [Quickstart - Chat with a local AI model](chat-local-model.md)
- [Generate images using AI with .NET](generate-images.md)
2 changes: 1 addition & 1 deletion docs/ai/quickstarts/chat-local-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Complete the following steps to create a .NET console app that connects to your
1. Add the [Microsoft.Extensions.AI.Ollama](https://aka.ms/meai-ollama-nuget) packages to your app:

```dotnetcli
dotnet add package Microsoft.Extensions.AI.Ollama --prerelease
dotnet package add Microsoft.Extensions.AI.Ollama --prerelease
```

1. Open the new app in your editor of choice, such as Visual Studio Code.
Expand Down
4 changes: 2 additions & 2 deletions docs/ai/quickstarts/create-assistant.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Complete the following steps to create a .NET console app and add the package ne
1. Add the [OpenAI](https://www.nuget.org/packages/OpenAI) package to your app:

```dotnetcli
dotnet add package OpenAI --prerelease
dotnet package add OpenAI --prerelease
```

1. Open the new app in your editor of choice, such as Visual Studio Code.
Expand All @@ -94,7 +94,7 @@ Complete the following steps to create a .NET console app and add the package ne
1. Add the [Azure.AI.OpenAI](https://www.nuget.org/packages/Azure.AI.OpenAI) package to your app:

```dotnetcli
dotnet add package Azure.AI.OpenAI --prerelease
dotnet package add Azure.AI.OpenAI --prerelease
```

1. Open the new app in your editor of choice, such as Visual Studio Code.
Expand Down
16 changes: 8 additions & 8 deletions docs/ai/quickstarts/evaluate-ai-response.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ Complete the following steps to create an MSTest project that connects to your l
1. Navigate to the `TestAI` directory, and add the necessary packages to your app:

```dotnetcli
dotnet add package Azure.AI.OpenAI
dotnet add package Azure.Identity
dotnet add package Microsoft.Extensions.AI.Abstractions --prerelease
dotnet add package Microsoft.Extensions.AI.Evaluation --prerelease
dotnet add package Microsoft.Extensions.AI.Evaluation.Quality --prerelease
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add Azure.AI.OpenAI
dotnet package add Azure.Identity
dotnet package add Microsoft.Extensions.AI.Abstractions --prerelease
dotnet package add Microsoft.Extensions.AI.Evaluation --prerelease
dotnet package add Microsoft.Extensions.AI.Evaluation.Quality --prerelease
dotnet package add Microsoft.Extensions.AI.OpenAI --prerelease
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

1. Run the following commands to add [app secrets](/aspnet/core/security/app-secrets) for your Azure OpenAI endpoint, model name, and tenant ID:
Expand Down
16 changes: 8 additions & 8 deletions docs/ai/quickstarts/generate-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ Complete the following steps to create a .NET console app to connect to an AI mo
:::zone target="docs" pivot="azure-openai"

```bash
dotnet add package Azure.AI.OpenAI
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add Azure.AI.OpenAI
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

:::zone-end

:::zone target="docs" pivot="openai"

```bash
dotnet add package OpenAI
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add OpenAI
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

:::zone-end
Expand Down Expand Up @@ -105,7 +105,7 @@ Complete the following steps to create a .NET console app to connect to an AI mo
:::code language="csharp" source="snippets/image-generation/azure-openai/program.cs" :::

> [!NOTE]
> <xref:Azure.Identity.DefaultAzureCredential> searches for authentication credentials from your local tooling. If you aren't using the `azd` template to provision the Azure OpenAI resource, you'll need to assign the `Azure AI Developer` role to the account you used to sign-in to Visual Studio or the Azure CLI. For more information, see [Authenticate to Azure AI services with .NET](/dotnet/ai/azure-ai-services-authentication).
> <xref:Azure.Identity.DefaultAzureCredential> searches for authentication credentials from your local tooling. If you aren't using the `azd` template to provision the Azure OpenAI resource, you'll need to assign the `Azure AI Developer` role to the account you used to sign-in to Visual Studio or the Azure CLI. For more information, see [Authenticate to Azure AI services with .NET](../azure-ai-services-authentication.md).

:::zone-end

Expand Down Expand Up @@ -144,5 +144,5 @@ azd down

## Next steps

- [Quickstart - Build an AI chat app with .NET](/dotnet/ai/quickstarts/build-chat-app)
- [Quickstart - Build an AI chat app with .NET](build-chat-app.md)
- [Generate text and conversations with .NET and Azure OpenAI Completions](/training/modules/open-ai-dotnet-text-completions/)
22 changes: 11 additions & 11 deletions docs/ai/quickstarts/prompt-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@ Complete the following steps to create a .NET console app to connect to an AI mo
:::zone target="docs" pivot="azure-openai"

```bash
dotnet add package Azure.Identity
dotnet add package Azure.AI.OpenAI
dotnet add package Microsoft.Extensions.AI.OpenAI
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add Azure.Identity
dotnet package add Azure.AI.OpenAI
dotnet package add Microsoft.Extensions.AI.OpenAI
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

:::zone-end

:::zone target="docs" pivot="openai"

```bash
dotnet add package OpenAI
dotnet add package Microsoft.Extensions.AI.OpenAI
dotnet add package Microsoft.Extensions.Configuration
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
dotnet package add OpenAI
dotnet package add Microsoft.Extensions.AI.OpenAI
dotnet package add Microsoft.Extensions.Configuration
dotnet package add Microsoft.Extensions.Configuration.UserSecrets
```

:::zone-end
Expand Down Expand Up @@ -113,7 +113,7 @@ The app uses the [`Microsoft.Extensions.AI`](https://www.nuget.org/packages/Micr
:::code language="csharp" source="snippets/prompt-completion/azure-openai/program.cs" range="1-12":::

> [!NOTE]
> <xref:Azure.Identity.DefaultAzureCredential> searches for authentication credentials from your local tooling. If you aren't using the `azd` template to provision the Azure OpenAI resource, you'll need to assign the `Azure AI Developer` role to the account you used to sign-in to Visual Studio or the Azure CLI. For more information, see [Authenticate to Azure AI services with .NET](/dotnet/ai/azure-ai-services-authentication).
> <xref:Azure.Identity.DefaultAzureCredential> searches for authentication credentials from your local tooling. If you aren't using the `azd` template to provision the Azure OpenAI resource, you'll need to assign the `Azure AI Developer` role to the account you used to sign-in to Visual Studio or the Azure CLI. For more information, see [Authenticate to Azure AI services with .NET](../azure-ai-services-authentication.md).

:::zone-end

Expand Down Expand Up @@ -153,5 +153,5 @@ azd down

## Next steps

- [Quickstart - Build an AI chat app with .NET](/dotnet/ai/quickstarts/build-chat-app)
- [Quickstart - Build an AI chat app with .NET](build-chat-app.md)
- [Generate text and conversations with .NET and Azure OpenAI Completions](/training/modules/open-ai-dotnet-text-completions/)
Loading