Skip to content

Commit cb300a7

Browse files
committed
resolve merge conflict
2 parents d9d6d7d + 4ecc90e commit cb300a7

File tree

102 files changed

+2156
-2390
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+2156
-2390
lines changed

.github/ISSUE_TEMPLATE/02-breaking-change.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ".NET breaking change"
2-
description: Report a change in .NET that breaks something that worked in a previous version. Intended mostly for product-team use.
2+
description: This template is for .NET product team members to report breaking changes to documentation content developers. Please report user-discovered issues in the appropriate product repo.
33
title: "[Breaking change]: "
44
labels:
55
- breaking-change

.openpublishing.redirection.csharp.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4156,6 +4156,22 @@
41564156
"source_path_from_root": "/docs/csharp/tour-of-csharp/types.md",
41574157
"redirect_url": "/dotnet/csharp/tour-of-csharp"
41584158
},
4159+
{
4160+
"source_path_from_root": "/docs/csharp/tour-of-csharp/tutorials/arrays-and-collections.md",
4161+
"redirect_url": "/dotnet/csharp/tour-of-csharp/tutorials/list-collection"
4162+
},
4163+
{
4164+
"source_path_from_root": "/docs/csharp/tour-of-csharp/tutorials/local-environment.md",
4165+
"redirect_url": "/dotnet/csharp/tour-of-csharp/tutorials"
4166+
},
4167+
{
4168+
"source_path_from_root": "/docs/csharp/tour-of-csharp/tutorials/branches-and-loops-local.md",
4169+
"redirect_url": "/dotnet/csharp/tour-of-csharp/tutorials/branches-and-loops"
4170+
},
4171+
{
4172+
"source_path_from_root": "/docs/csharp/tour-of-csharp/tutorials/numbers-in-csharp-local.md",
4173+
"redirect_url": "/dotnet/csharp/tour-of-csharp/tutorials/numbers-in-csharp"
4174+
},
41594175
{
41604176
"source_path_from_root": "/docs/csharp/tuples.md",
41614177
"redirect_url": "/dotnet/csharp/language-reference/builtin-types/value-tuples"

.openpublishing.redirection.framework.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3502,11 +3502,11 @@
35023502
},
35033503
{
35043504
"source_path_from_root": "/docs/framework/network-programming/accessing-the-internet-through-a-proxy.md",
3505-
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#http-proxy"
3505+
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#configure-an-http-proxy"
35063506
},
35073507
{
35083508
"source_path_from_root": "/docs/framework/network-programming/automatic-proxy-detection.md",
3509-
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#http-proxy"
3509+
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#configure-an-http-proxy"
35103510
},
35113511
{
35123512
"source_path_from_root": "/docs/framework/network-programming/how-to-override-a-global-proxy-selection.md",
@@ -3522,7 +3522,7 @@
35223522
},
35233523
{
35243524
"source_path_from_root": "/docs/framework/network-programming/proxy-configuration.md",
3525-
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#http-proxy"
3525+
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#configure-an-http-proxy"
35263526
},
35273527
{
35283528
"source_path_from_root": "/docs/framework/network-programming/changes-to-the-system-uri-namespace-in-version-2-0.md",
@@ -3534,7 +3534,7 @@
35343534
},
35353535
{
35363536
"source_path_from_root": "/docs/framework/network-programming/how-to-enable-a-webrequest-to-use-a-proxy-to-communicate-with-the-internet.md",
3537-
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#http-proxy"
3537+
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient#configure-an-http-proxy"
35383538
}
35393539
]
35403540
}

docs/ai/quickstarts/includes/ai-templates-azure-openai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ After you install the AI app templates, you can use them to create starter apps
5353
1. Create a new app with the `dotnet new` command and the following parameters:
5454

5555
```dotnetcli
56-
dotnet new aichatweb --framework "net9.0" --AIServiceProvider "azureopenai" --VectorStore "local"
56+
dotnet new aichatweb --framework "net9.0" --AiServiceProvider "azureopenai" --VectorStore "local"
5757
```
5858
5959
The .NET CLI creates a new .NET 9.0 app with the configurations you specified.

docs/ai/quickstarts/includes/ai-templates-ollama.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ After you install the AI app templates, you can use them to create starter apps
5353
1. Create a new app with the `dotnet new` command and the following parameters:
5454

5555
```dotnetcli
56-
dotnet new aichatweb --framework "net9.0" --AIServiceProvider "ollama" --VectorStore "local"
56+
dotnet new aichatweb --framework "net9.0" --AiServiceProvider "ollama" --VectorStore "local"
5757
```
5858
5959
The .NET CLI creates a new .NET 9.0 app with the configurations you specified.

docs/ai/quickstarts/includes/ai-templates-openai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ After you install the AI app templates, you can use them to create starter apps
5353
1. Create a new app with the `dotnet new` command and the following parameters:
5454

5555
```dotnetcli
56-
dotnet new aichatweb --framework "net9.0" --AIServiceProvider "openai" --VectorStore "local"
56+
dotnet new aichatweb --framework "net9.0" --AiServiceProvider "openai" --VectorStore "local"
5757
```
5858
5959
The .NET CLI creates a new .NET 9.0 app with the configurations you specified.

docs/azure/includes/dotnet-all.md

Lines changed: 22 additions & 22 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)