From 2e264c6d0b8eea3cfd53a230c35339ab906ff736 Mon Sep 17 00:00:00 2001 From: alexwolfmsft <93200798+alexwolfmsft@users.noreply.github.com> Date: Wed, 5 Aug 2026 10:20:25 -0400 Subject: [PATCH 01/29] Freshness pass on sdk docs (#55227) --- docs/azure/sdk/protocol-convenience-methods.md | 7 ++++--- docs/azure/sdk/resource-management.md | 13 +++++++------ docs/azure/sdk/thread-safety.md | 5 +++-- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/docs/azure/sdk/protocol-convenience-methods.md b/docs/azure/sdk/protocol-convenience-methods.md index dee3cac7b5be0..c85acd4bb9763 100644 --- a/docs/azure/sdk/protocol-convenience-methods.md +++ b/docs/azure/sdk/protocol-convenience-methods.md @@ -3,7 +3,8 @@ title: Understand Azure SDK client library method types description: Learn about the key differences between protocol and convenience methods in the Azure SDK client libraries for .NET. ms.topic: concept-article ms.custom: devx-track-dotnet, engagement-fy23, devx-track-arm-template -ms.date: 04/25/2025 +ms.date: 08/04/2026 +ai-usage: ai-assisted --- # Azure SDK for .NET protocol and convenience methods overview @@ -135,11 +136,11 @@ When a service call fails, the service client throws an exception that exposes t # [System.ClientModel exceptions](#tab/system-clientmodel) -:::code source="snippets/protocol-convenience-methods/AzureCore/ExceptionHandling/Program.cs" highlight="21-24"::: +:::code source="snippets/protocol-convenience-methods/SCM/ExceptionHandling/Program.cs" highlight="17-20"::: # [Azure.Core exceptions](#tab/azure-core) -:::code source="snippets/protocol-convenience-methods/SCM/ExceptionHandling/Program.cs" highlight="17-20"::: +:::code source="snippets/protocol-convenience-methods/AzureCore/ExceptionHandling/Program.cs" highlight="21-24"::: --- diff --git a/docs/azure/sdk/resource-management.md b/docs/azure/sdk/resource-management.md index 890b094f7cb5d..cb7c8b0aaae64 100644 --- a/docs/azure/sdk/resource-management.md +++ b/docs/azure/sdk/resource-management.md @@ -1,7 +1,8 @@ --- title: Resource management description: Learn how to use the Azure SDK for .NET to manage Azure resources. -ms.date: 04/25/2025 +ms.date: 08/04/2026 +ai-usage: ai-assisted --- # Resource management using the Azure SDK for .NET @@ -98,7 +99,7 @@ ResourceGroupResource resourceGroup = | Index | `resourceGroup.GetServiceBusNamespace(string servicebusNamespaceName)` | | Add/Update | `resourceGroup.GetServiceBusNamespaces().CreateOrUpdate(Azure.WaitUntil waitUntil, string name, ServiceBusNamespaceData data)` | | Contains | `resourceGroup.GetServiceBusNamespaces().Exists(string servicebusNamespaceName)` | -| Delete | `client.GetServiceBusQueueResource(ResourceIdentifior resourceIdentifior).Delete()` or `resourceGroup.GetServiceBusNamespace(string servicebusNamespaceName).Delete()`| +| Delete | `client.GetServiceBusQueueResource(ResourceIdentifier resourceIdentifier).Delete()` or `resourceGroup.GetServiceBusNamespace(string servicebusNamespaceName).Delete()`| Remember, all the Azure resources, including the resource group itself, can be managed by their corresponding management SDK using code similar to the above example. To find the correct Azure management SDK package, look for packages named with the following pattern `Azure.ResourceManager.{ResourceProviderName}`. @@ -164,7 +165,7 @@ ResourceGroupResource resourceGroup = // Next we get the collection for the virtual machines // vmCollection is a {ResourceName}Collection object from above -VirtualMachineCollection virtualMachineCollection = await resourceGroup.GetVirtualMachines(); +VirtualMachineCollection virtualMachineCollection = resourceGroup.GetVirtualMachines(); // Next we loop over all vms in the collection // Each vm is a {ResourceName}Resource object from above @@ -297,7 +298,7 @@ ArmClient client = new ArmClient(new DefaultAzureCredential()); SubscriptionResource subscription = await client.GetDefaultSubscriptionAsync(); string resourceGroupName = "myRgName"; -bool exists = await subscription.GetResourceGroups().ExistsAsync(resourceGroupName).Value; +bool exists = (await subscription.GetResourceGroups().ExistsAsync(resourceGroupName)).Value; if (exists) { @@ -309,7 +310,7 @@ if (exists) } else { - Console.WriteLine($"Resource Group {rgName} does not exist."); + Console.WriteLine($"Resource Group {resourceGroupName} does not exist."); } ``` @@ -328,7 +329,7 @@ ResourceGroupCollection resourceGroupCollection = subscription.GetResourceGroups string resourceGroupName = "myRgName"; AzureLocation location = AzureLocation.WestUS2; ResourceGroupData resourceGroupData = new ResourceGroupData(location); -ResourceGroupResource resourceGroup = (await resourceGroupCollection.CreateOrUpdateAsync(resourceGroupName, resourceGroupData)).Value; +ResourceGroupResource resourceGroup = (await resourceGroupCollection.CreateOrUpdateAsync(WaitUntil.Completed, resourceGroupName, resourceGroupData)).Value; ``` ### List all resource groups diff --git a/docs/azure/sdk/thread-safety.md b/docs/azure/sdk/thread-safety.md index f82372e55ae96..44df9add713f0 100644 --- a/docs/azure/sdk/thread-safety.md +++ b/docs/azure/sdk/thread-safety.md @@ -2,7 +2,8 @@ title: Thread safety with the Azure SDK for .NET description: Learn about thread safety in Azure SDK client objects and how this design impacts client lifetime management. ms.custom: devx-track-dotnet, engagement-fy23 -ms.date: 04/25/2025 +ms.date: 08/04/2026 +ai-usage: ai-assisted --- # Thread safety and client lifetime management for Azure SDK objects @@ -53,7 +54,7 @@ foreach (var tag in tags) { newSecret.Properties.Tags[tag] = CalculateTagValue(tag); } - ); + }); } client.UpdateSecretProperties(newSecret.Properties); From b50e902efd60179456586b09d4ccf3fe0fc141f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:07:29 -0400 Subject: [PATCH 02/29] Bump the dotnet group with 2 updates (#55273) Bumps MSTest.TestAdapter from 4.3.2 to 4.3.3 Bumps MSTest.TestFramework from 4.3.2 to 4.3.3 --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-version: 4.3.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: MSTest.TestFramework dependency-version: 4.3.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../MakeConst/MakeConst.Test/MakeConst.Test.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/csharp/roslyn-sdk/tutorials/snippets/how-to-write-csharp-analyzer-code-fix/MakeConst/MakeConst.Test/MakeConst.Test.csproj b/docs/csharp/roslyn-sdk/tutorials/snippets/how-to-write-csharp-analyzer-code-fix/MakeConst/MakeConst.Test/MakeConst.Test.csproj index 4f11bedc09ae5..930e832c01091 100644 --- a/docs/csharp/roslyn-sdk/tutorials/snippets/how-to-write-csharp-analyzer-code-fix/MakeConst/MakeConst.Test/MakeConst.Test.csproj +++ b/docs/csharp/roslyn-sdk/tutorials/snippets/how-to-write-csharp-analyzer-code-fix/MakeConst/MakeConst.Test/MakeConst.Test.csproj @@ -9,8 +9,8 @@ - - + + From 0cf95a9fd1cd68115d134ea8afb05166f4b26f43 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:12:49 -0400 Subject: [PATCH 03/29] Bump the dotnet group with 2 updates (#55308) Bumps Microsoft.Extensions.Configuration.Binder from 10.0.9 to 10.0.10 Bumps Microsoft.Extensions.Hosting from 10.0.9 to 10.0.10 --- updated-dependencies: - dependency-name: Microsoft.Extensions.Configuration.Binder dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: Microsoft.Extensions.Hosting dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../snippets/anti-patterns/di-anti-patterns.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/extensions/dependency-injection/snippets/anti-patterns/di-anti-patterns.csproj b/docs/core/extensions/dependency-injection/snippets/anti-patterns/di-anti-patterns.csproj index 7e9e96831eb19..408a107fc285f 100644 --- a/docs/core/extensions/dependency-injection/snippets/anti-patterns/di-anti-patterns.csproj +++ b/docs/core/extensions/dependency-injection/snippets/anti-patterns/di-anti-patterns.csproj @@ -8,8 +8,8 @@ - - + + From 9aa1394ad36078bd152f1b1a1ad77e524d0934e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:14:12 -0400 Subject: [PATCH 04/29] Bump the dotnet group with 3 updates (#55306) Bumps SQLitePCLRaw.core from 3.0.4 to 3.0.5 Bumps SQLitePCLRaw.provider.dynamic_cdecl from 3.0.4 to 3.0.5 Bumps SQLitePCLRaw.provider.sqlite3 from 3.0.4 to 3.0.5 --- updated-dependencies: - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.core dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.provider.dynamic_cdecl dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: SQLitePCLRaw.provider.sqlite3 dependency-version: 3.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../AggregateFunctionSample/AggregateFunctionSample.csproj | 2 +- .../standard/data/sqlite/AsyncSample/AsyncSample.csproj | 2 +- .../standard/data/sqlite/BackupSample/BackupSample.csproj | 2 +- .../standard/data/sqlite/BatchingSample/BatchingSample.csproj | 2 +- .../data/sqlite/BulkInsertSample/BulkInsertSample.csproj | 2 +- .../data/sqlite/CollationSample/CollationSample.csproj | 2 +- .../standard/data/sqlite/DapperSample/DapperSample.csproj | 2 +- .../data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj | 2 +- .../DeferredTransactionSample.csproj | 2 +- .../data/sqlite/DirtyReadSample/DirtyReadSample.csproj | 2 +- .../data/sqlite/ExtensionsSample/ExtensionsSample.csproj | 2 +- .../data/sqlite/HelloWorldSample/HelloWorldSample.csproj | 2 +- .../standard/data/sqlite/InteropSample/InteropSample.csproj | 2 +- .../RegularExpressionSample/RegularExpressionSample.csproj | 2 +- .../sqlite/ResultMetadataSample/ResultMetadataSample.csproj | 2 +- .../data/sqlite/SavepointSample/SavepointSample.csproj | 2 +- .../sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj | 2 +- .../sqlite/SqliteProviderSample/SqliteProviderSample.csproj | 4 ++-- .../data/sqlite/StreamingSample/StreamingSample.csproj | 2 +- .../sqlite/SystemLibrarySample/SystemLibrarySample.csproj | 2 +- 20 files changed, 21 insertions(+), 21 deletions(-) diff --git a/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj b/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj +++ b/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj b/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj +++ b/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj b/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj +++ b/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj b/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj +++ b/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj b/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj +++ b/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj b/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj +++ b/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj b/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj index 2d10c123e97fc..d2f4e0afdadb6 100644 --- a/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj +++ b/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj @@ -9,7 +9,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj b/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj +++ b/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj b/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj +++ b/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj b/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj +++ b/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj b/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj index 1815ca0d4f4c2..bd486ed1133ee 100644 --- a/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj +++ b/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj @@ -11,7 +11,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj b/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj +++ b/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj b/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj +++ b/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj b/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj +++ b/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj b/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj +++ b/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj b/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj +++ b/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj b/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj index 003250f9d62e1..dce80cad9368f 100644 --- a/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj +++ b/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj b/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj index d0c5a4bbd9050..cf49a4887fb8c 100644 --- a/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj +++ b/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj @@ -8,8 +8,8 @@ - - + + diff --git a/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj b/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj index 0b82891fb6a81..17a52de20cc18 100644 --- a/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj +++ b/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj @@ -8,7 +8,7 @@ - + diff --git a/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj b/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj index 68ac3a4ecdde6..60321cd279c67 100644 --- a/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj +++ b/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj @@ -8,7 +8,7 @@ - + From 876e7ecc458959b8082e13f9a0c241d720374f6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:14:21 -0400 Subject: [PATCH 05/29] Bump the dotnet group with 3 updates (#55307) Bumps Microsoft.Extensions.AI.OpenAI from 10.7.0 to 10.8.3 Bumps Microsoft.Extensions.Configuration from 10.0.9 to 10.0.10 Bumps Microsoft.Extensions.Configuration.UserSecrets from 10.0.9 to 10.0.10 --- updated-dependencies: - dependency-name: Microsoft.Extensions.AI.OpenAI dependency-version: 10.8.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet - dependency-name: Microsoft.Extensions.Configuration dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: Microsoft.Extensions.Configuration.UserSecrets dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../snippets/chat-with-data/openai/VectorDataAI.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ai/vector-stores/snippets/chat-with-data/openai/VectorDataAI.csproj b/docs/ai/vector-stores/snippets/chat-with-data/openai/VectorDataAI.csproj index c8fe66faf31b2..f555b7d1c423b 100644 --- a/docs/ai/vector-stores/snippets/chat-with-data/openai/VectorDataAI.csproj +++ b/docs/ai/vector-stores/snippets/chat-with-data/openai/VectorDataAI.csproj @@ -9,9 +9,9 @@ - - - + + + From 862fefbd00f73e78ce69a1898827c784fab97c30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:14:31 -0400 Subject: [PATCH 06/29] Bump the dotnet group with 2 updates (#55305) Bumps Microsoft.Extensions.AmbientMetadata.Build from 10.7.0 to 10.8.0 Bumps Microsoft.Extensions.Hosting from 10.0.9 to 10.0.10 --- updated-dependencies: - dependency-name: Microsoft.Extensions.AmbientMetadata.Build dependency-version: 10.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet - dependency-name: Microsoft.Extensions.Hosting dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../snippets/buildmetadata-access/buildmetadata-access.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/diagnostics/ambient-metadata/snippets/buildmetadata-access/buildmetadata-access.csproj b/docs/core/diagnostics/ambient-metadata/snippets/buildmetadata-access/buildmetadata-access.csproj index 4400839eb0287..cf80964b45146 100644 --- a/docs/core/diagnostics/ambient-metadata/snippets/buildmetadata-access/buildmetadata-access.csproj +++ b/docs/core/diagnostics/ambient-metadata/snippets/buildmetadata-access/buildmetadata-access.csproj @@ -8,8 +8,8 @@ - - + + From acac7e4cb0819a031f1cb8b978e64d148c390c1f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:15:48 -0400 Subject: [PATCH 07/29] Bump the dotnet group with 1 update (#55284) Bumps Microsoft.Extensions.DependencyInjection from 10.0.9 to 10.0.10 --- updated-dependencies: - dependency-name: Microsoft.Extensions.DependencyInjection dependency-version: 10.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../dependency-injection/snippets/anykey/AnyKeyExamples.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/extensions/dependency-injection/snippets/anykey/AnyKeyExamples.csproj b/docs/core/extensions/dependency-injection/snippets/anykey/AnyKeyExamples.csproj index 45d16608aec5d..5e96051a0eb51 100644 --- a/docs/core/extensions/dependency-injection/snippets/anykey/AnyKeyExamples.csproj +++ b/docs/core/extensions/dependency-injection/snippets/anykey/AnyKeyExamples.csproj @@ -8,7 +8,7 @@ - + From ba278ee62154a2f4155e9973c287531ee8981f0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:15:58 -0400 Subject: [PATCH 08/29] Bump the dotnet group with 3 updates (#55288) Bumps Microsoft.Extensions.AI from 10.8.0 to 10.8.3 Bumps Microsoft.Extensions.AI.OpenAI from 10.8.0 to 10.8.3 Bumps ModelContextProtocol from 1.4.1 to 2.0.0 --- updated-dependencies: - dependency-name: Microsoft.Extensions.AI dependency-version: 10.8.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: Microsoft.Extensions.AI.OpenAI dependency-version: 10.8.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: ModelContextProtocol dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../quickstarts/snippets/mcp-client/MinimalMCPClient.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ai/quickstarts/snippets/mcp-client/MinimalMCPClient.csproj b/docs/ai/quickstarts/snippets/mcp-client/MinimalMCPClient.csproj index b5c3a1e77ed26..47d20b9dc7863 100644 --- a/docs/ai/quickstarts/snippets/mcp-client/MinimalMCPClient.csproj +++ b/docs/ai/quickstarts/snippets/mcp-client/MinimalMCPClient.csproj @@ -10,9 +10,9 @@ - - - + + + From 3580272703f1e64fff80ef824604238d40de5713 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:16:06 -0400 Subject: [PATCH 09/29] Bump the dotnet group with 3 updates (#55294) Bumps Microsoft.Extensions.AI from 10.8.1 to 10.8.3 Bumps OllamaSharp from 5.4.25 to 5.4.30 Bumps OpenTelemetry.Exporter.Console from 1.16.0 to 1.17.0 --- updated-dependencies: - dependency-name: Microsoft.Extensions.AI dependency-version: 10.8.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: OllamaSharp dependency-version: 5.4.30 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dotnet - dependency-name: OpenTelemetry.Exporter.Console dependency-version: 1.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../microsoft-extensions-ai/AI.Shared/AI.Shared.csproj | 2 +- .../ConsoleAI.UseTelemetry/ConsoleAI.UseTelemetry.csproj | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ai/snippets/microsoft-extensions-ai/AI.Shared/AI.Shared.csproj b/docs/ai/snippets/microsoft-extensions-ai/AI.Shared/AI.Shared.csproj index 1e86c72a112be..a6027ffadd024 100644 --- a/docs/ai/snippets/microsoft-extensions-ai/AI.Shared/AI.Shared.csproj +++ b/docs/ai/snippets/microsoft-extensions-ai/AI.Shared/AI.Shared.csproj @@ -7,7 +7,7 @@ - + diff --git a/docs/ai/snippets/microsoft-extensions-ai/ConsoleAI.UseTelemetry/ConsoleAI.UseTelemetry.csproj b/docs/ai/snippets/microsoft-extensions-ai/ConsoleAI.UseTelemetry/ConsoleAI.UseTelemetry.csproj index 13e8569f754f9..78693bb1119a2 100644 --- a/docs/ai/snippets/microsoft-extensions-ai/ConsoleAI.UseTelemetry/ConsoleAI.UseTelemetry.csproj +++ b/docs/ai/snippets/microsoft-extensions-ai/ConsoleAI.UseTelemetry/ConsoleAI.UseTelemetry.csproj @@ -8,8 +8,8 @@ - - + + From c16408503d5874e3e5fae12ee40be66f0df1bd9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 11:16:17 -0400 Subject: [PATCH 10/29] Bump the dotnet group with 1 update (#55295) Bumps Microsoft.Agents.AI.OpenAI from 1.14.0 to 1.15.0 --- updated-dependencies: - dependency-name: Microsoft.Agents.AI.OpenAI dependency-version: 1.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dotnet ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/ai/snippets/prompt-engineering/multi-turn-chat.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ai/snippets/prompt-engineering/multi-turn-chat.csproj b/docs/ai/snippets/prompt-engineering/multi-turn-chat.csproj index 12c63cab5bfaf..d5055b5542eae 100644 --- a/docs/ai/snippets/prompt-engineering/multi-turn-chat.csproj +++ b/docs/ai/snippets/prompt-engineering/multi-turn-chat.csproj @@ -10,7 +10,7 @@ - +