Skip to content

Merge main into live #47678

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

Merged
merged 25 commits into from
Jul 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3dbc6c4
Update operator-overloading.md (#47633)
64J0 Jul 30, 2025
167b223
Update methods.md (#47616)
64J0 Jul 30, 2025
2c65a3e
Update constructors.md (#47614)
64J0 Jul 30, 2025
f07af40
Bump the dotnet group with 2 updates (#47640)
dependabot[bot] Jul 30, 2025
1787187
Bump the dotnet group with 1 update (#47641)
dependabot[bot] Jul 30, 2025
374b9f7
Bump github/codeql-action from 3.29.3 to 3.29.5 (#47644)
dependabot[bot] Jul 30, 2025
027071d
Bump the dotnet group with 1 update (#47643)
dependabot[bot] Jul 30, 2025
a387703
Bump the dotnet group with 2 updates (#47645)
dependabot[bot] Jul 30, 2025
f18bcf4
Bump the dotnet group with 1 update (#47646)
dependabot[bot] Jul 30, 2025
e4180b0
Bump the dotnet group with 1 update (#47647)
dependabot[bot] Jul 30, 2025
32c6272
Bump the dotnet group with 2 updates (#47648)
dependabot[bot] Jul 30, 2025
d1ce3a8
Bump the dotnet group with 1 update (#47649)
dependabot[bot] Jul 30, 2025
04ab975
Bump the dotnet group with 1 update (#47651)
dependabot[bot] Jul 30, 2025
4b7ea9b
Bump the dotnet group with 1 update (#47652)
dependabot[bot] Jul 30, 2025
3b6a3e8
Bump the dotnet group with 1 update (#47654)
dependabot[bot] Jul 30, 2025
183312d
Bump the dotnet group with 1 update (#47655)
dependabot[bot] Jul 30, 2025
3904f60
Bump the dotnet group with 2 updates (#47656)
dependabot[bot] Jul 30, 2025
dc3c9aa
Bump the dotnet group with 1 update (#47658)
dependabot[bot] Jul 30, 2025
a62730c
Bump the dotnet group with 1 update (#47661)
dependabot[bot] Jul 30, 2025
e18e60d
Bump the dotnet group with 2 updates (#47660)
dependabot[bot] Jul 30, 2025
a94d410
Clarify Orleans silo shutdown behavior with respect to IHost lifetime…
matthijsl Jul 30, 2025
df52e2a
Update package index with latest published versions (#47634)
azure-sdk Jul 30, 2025
50b1d40
[BULK CHANGE] Content SFI - Stay Green: Add ms.custom values for ROPC…
Dickson-Mwendia Jul 30, 2025
d4d5fb8
Update Program.cs (#47659)
TimChen44 Jul 30, 2025
d67c63f
Update package index with latest published versions (#47665)
azure-sdk Jul 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ jobs:

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@d6bbdef45e766d081b84a2def353b0055f728d3e # v3.29.3
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
with:
sarif_file: results.sarif
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.7" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="MSTest" Version="3.9.3" />
<PackageReference Include="MSTest" Version="3.10.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

List<ChatResponseUpdate> updates = [];
await foreach (ChatResponseUpdate update in
client.GetStreamingResponseAsync(history))
client.GetStreamingResponseAsync(chatHistory))
{
Console.Write(update);
updates.Add(update);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0-preview.6.25358.103" />
<PackageReference Include="OllamaSharp" Version="5.2.10" />
<PackageReference Include="OllamaSharp" Version="5.3.3" />
<ProjectReference Include="..\AI.Shared\AI.Shared.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="OllamaSharp" Version="5.2.10" />
<PackageReference Include="OllamaSharp" Version="5.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="OllamaSharp" Version="5.2.10" />
<PackageReference Include="OllamaSharp" Version="5.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0-preview.6.25358.103" />
<PackageReference Include="OllamaSharp" Version="5.3.1" />
<PackageReference Include="OllamaSharp" Version="5.3.3" />
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.12.0" />
<ProjectReference Include="..\AI.Shared\AI.Shared.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0-preview.6.25358.103" />
<PackageReference Include="OllamaSharp" Version="5.2.10" />
<PackageReference Include="OllamaSharp" Version="5.3.3" />
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.12.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="OllamaSharp" Version="5.2.10" />
<PackageReference Include="OllamaSharp" Version="5.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="OllamaSharp" Version="5.2.7" />
<PackageReference Include="OllamaSharp" Version="5.3.3" />
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.12.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.7" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="MSTest" Version="3.9.3" />
<PackageReference Include="MSTest" Version="3.10.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author: danroth27
ms.author: daroth
no-loc: [Blazor]
ms.date: 04/11/2022
ms.custom: sfi-ropc-nochange
---
# Build reusable UI components with Blazor

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author: csharpfritz
ms.author: jefritz
no-loc: [Blazor]
ms.date: 04/11/2022
ms.custom: sfi-ropc-nochange
---
# App configuration

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author: twsouthwick
ms.author: tasou
no-loc: [Blazor, WebAssembly]
ms.date: 04/11/2022
ms.custom: sfi-ropc-nochange
---
# Migrate from ASP.NET Web Forms to Blazor

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author: danroth27
ms.author: daroth
no-loc: [Blazor, WebAssembly]
ms.date: 04/11/2022
ms.custom: sfi-ropc-nochange
---
# Project structure for Blazor apps

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author: ardalis
ms.author: daroth
no-loc: [Blazor]
ms.date: 04/11/2022
ms.custom: sfi-ropc-nochange
---
# Security: Authentication and Authorization in ASP.NET Web Forms and Blazor

Expand Down
1 change: 1 addition & 0 deletions docs/architecture/cloud-native/azure-monitor.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Azure Monitor
description: Using Azure Monitor to gain visibility into your system is running.
ms.date: 04/06/2022
ms.custom: sfi-image-nochange
---

# Azure Monitor
Expand Down
1 change: 1 addition & 0 deletions docs/architecture/cloud-native/azure-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Azure security for cloud-native apps
description: Architecting Cloud Native .NET Apps for Azure | Azure Security for Cloud Native Apps
ms.date: 04/06/2022
ms.custom: sfi-image-nochange
---

# Azure security for cloud-native apps
Expand Down
1 change: 1 addition & 0 deletions docs/architecture/cloud-native/devops.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: DevOps
description: DevOps considerations for cloud-native applications
ms.date: 04/06/2022
ms.custom: sfi-image-nochange
---

# DevOps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Logging with Elastic Stack
description: Logging using Elastic Stack, Logstash, and Kibana
ms.date: 04/06/2022
ms.custom: sfi-image-nochange
---

# Logging with Elastic Stack
Expand Down
1 change: 1 addition & 0 deletions docs/architecture/cloud-native/observability-patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Observability patterns
description: Observability patterns for cloud-native applications
ms.date: 04/06/2022
ms.custom: sfi-image-nochange
---

# Observability patterns
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Service-to-service communication
description: Learn how back-end cloud-native microservices communicate with other back-end microservices.
author: robvet
ms.date: 04/06/2022
ms.custom: sfi-image-nochange
---

# Service-to-service communication
Expand Down
1 change: 1 addition & 0 deletions docs/architecture/maui/authentication-and-authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ description: Providing security and identity management for .NET MAUI applicatio
author: michaelstonis
no-loc: [MAUI]
ms.date: 09/10/2024
ms.custom: sfi-image-nochange
---

# Authentication and authorization
Expand Down
1 change: 1 addition & 0 deletions docs/architecture/maui/validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ description: Provide feedback and checks to ensure data is correct at runtime
author: michaelstonis
no-loc: [MAUI]
ms.date: 05/30/2024
ms.custom: sfi-image-nochange
---

# Validation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Identifying ___domain-model boundaries for each microservice
description: Explore the essence of partitioning a large application into microservices to achieve a sound architecture.
ms.date: 09/20/2018
ms.custom: sfi-image-nochange
---
# Identify ___domain-model boundaries for each microservice

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Development workflow for Docker apps
description: Learn details of the workflow for developing Docker-based applications. Optimize Dockerfiles and use the simplified workflow available in Visual Studio.
ms.date: 09/10/2024
ms.custom: sfi-image-nochange
---
# Development workflow for Docker apps

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Implementing the microservice application layer using the Web API
description: Understand the Dependency Injection and the Mediator patterns and their implementation details in the Web API application layer.
ms.date: 01/13/2021
ms.custom: sfi-ropc-nochange
---

# Implement the microservice application layer using the Web API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Use a database server running as a container
description: Understand the importance of using a database server running as a container only for development. Never for production.
ms.date: 01/13/2021
ms.custom: sfi-ropc-nochange
---
# Use a database server running as a container

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Implementing API Gateways with Ocelot
description: Learn how to implement API Gateways with Ocelot and how to use Ocelot in a container-based environment.
ms.date: 06/23/2021
ms.custom: sfi-ropc-nochange
---

# Implement API Gateways with Ocelot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Defining your multi-container application with docker-compose.yml
description: How to specify microservices composition for a multicontainer application with docker-compose.yml.
ms.date: 11/19/2021
ms.custom: sfi-ropc-nochange
---

# Defining your multi-container application with docker-compose.yml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Implementing an event bus with RabbitMQ for the development or test environment
description: .NET Microservices Architecture for Containerized .NET Applications | Use RabbitMQ to implement an event bus messaging for integration events for the development or test environments.
ms.date: 01/13/2021
ms.custom: sfi-ropc-nochange
---
# Implementing an event bus with RabbitMQ for the development or test environment

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Securing .NET Microservices and Web Applications
description: Security in .NET Microservices and Web Applications - Get to know the authentication options in ASP.NET Core web applications.
author: mjrousos
ms.date: 01/13/2021
ms.custom: sfi-ropc-nochange
---
# Make secure .NET Microservices and Web Applications

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author: ardalis
ms.author: wiwagn
ms.date: 12/12/2021
no-loc: [Blazor, WebAssembly]
ms.custom: sfi-ropc-nochange
---
# Develop ASP.NET Core MVC apps

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ author: ardalis
ms.author: wiwagn
ms.date: 12/12/2021
no-loc: [Blazor, WebAssembly]
ms.custom: sfi-ropc-nochange
---
# Working with Data in ASP.NET Core Apps

Expand Down
6 changes: 5 additions & 1 deletion docs/azure/configure-vs-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
title: Configure Visual Studio Code for Azure development with .NET
description: This article helps you configure Visual Studio Code for Azure development including getting the right plugins installed and configured in VS Code
ms.topic: concept-article
ms.custom: devx-track-dotnet, vscode-azure-extension-update-completed, engagement-fy23
ms.date: 8/15/2024
author: alexwolfmsft
ms.author: alexwolf
ms.custom:
- devx-track-dotnet
- vscode-azure-extension-update-completed
- engagement-fy23
- sfi-image-nochange
---

# Configure Visual Studio Code for Azure development
Expand Down
Loading
Loading