Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b54c6fb

Browse files
authoredDec 27, 2024··
Merge pull request #44088 from dotnet/main
Push main to live
2 parents 7e4b561 + aeeb516 commit b54c6fb

File tree

4 files changed

+130
-128
lines changed

4 files changed

+130
-128
lines changed
 

‎.github/dependabot.yml

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

‎docs/ai/quickstarts/snippets/chat-with-data/azure-openai/VectorDataAI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="Azure.Identity" Version="1.13.1" />
12-
<PackageReference Include="Azure.AI.OpenAI" Version="2.0.0" />
12+
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
1313
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.0.1-preview.1.24570.5" />
1414
<PackageReference Include="Microsoft.Extensions.VectorData.Abstractions" Version="9.0.0-preview.1.24523.1" />
1515
<PackageReference Include="Microsoft.SemanticKernel.Connectors.InMemory" Version="1.31.0-preview" />

‎docs/core/testing/unit-testing-platform-integration-dotnet-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Or in project file:
132132

133133
By default, all console output that the underlying test executable writes is captured and hidden from the user. This includes the banner, version information, and formatted test information.
134134

135-
To show this information together with MSBuild output use`<TestingPlatformCaptureOutput>false</TestingPlatformCaptureOutput>`.
135+
To show this information together with MSBuild output, use `<TestingPlatformCaptureOutput>false</TestingPlatformCaptureOutput>`.
136136

137137
This option doesn't impact how the testing framework captures user output written by `Console.WriteLine` or other similar ways to write to the console.
138138

‎docs/core/tools/dotnet-install-script.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
title: dotnet-install scripts
33
description: Learn about the dotnet-install scripts to install the .NET SDK and the shared runtime.
4-
ms.date: 08/01/2023
4+
ms.date: 12/26/2024
55
---
66
# dotnet-install scripts reference
77

8+
Note: The behavior of the install script has changed. It downloads .NET from new network locations. Please see [Critical: .NET Install links are changing](https://devblogs.microsoft.com/dotnet/critical-dotnet-install-links-are-changing/) for more information.
9+
810
## Name
911

1012
`dotnet-install.ps1` | `dotnet-install.sh` - Script used to install the .NET SDK and the shared runtime.
@@ -99,7 +101,7 @@ The install scripts do not update the registry on Windows. They just download th
99101

100102
- **`-AzureFeed|--azure-feed`**
101103

102-
For internal use only. Allows using a different storage to download SDK archives from. This parameter is only used if --no-cdn is false. The default is `https://dotnetcli.azureedge.net/dotnet`.
104+
For internal use only. Allows using a different storage to download SDK archives from. This parameter is only used if --no-cdn is false. The default is `https://builds.dotnet.microsoft.com/dotnet`.
103105

104106
- **`-Channel|--channel <CHANNEL>`**
105107

0 commit comments

Comments
 (0)
Please sign in to comment.