Skip to content

Commit 39ed8e1

Browse files
CopilotIEvangelistmeaghanlewis
authored
Update freshness dates and package references for 39 high-traffic .NET documentation articles (#49375)
* Initial plan * Update freshness dates for 7 articles and remove version pinning from http-resilience Co-authored-by: IEvangelist <[email protected]> * Update freshness dates for 13 additional articles Co-authored-by: IEvangelist <[email protected]> * Update freshness dates for final 16 articles and remove version pinning/prerelease flags Co-authored-by: IEvangelist <[email protected]> * Restore .NET 10+ SDK command alternative in service-discovery.md Co-authored-by: IEvangelist <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: IEvangelist <[email protected]> Co-authored-by: Meaghan Osagie (Lewis) <[email protected]>
1 parent ff740e6 commit 39ed8e1

25 files changed

+31
-32
lines changed

docs/core/docker/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Introduction to Docker
33
description: This article provides an introduction and overview to Docker containers in the context of a .NET application.
4-
ms.date: 09/25/2023
4+
ms.date: 10/20/2025
55
ms.custom: "mvc"
66
---
77

docs/core/extensions/console-log-formatter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Console log formatting
33
description: Learn how to use and implement custom console log formatting in your .NET apps. Register and create new log formatters for better application logging.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 04/11/2024
6+
ms.date: 10/20/2025
77
---
88

99
# Console log formatting

docs/core/extensions/create-resource-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create resource files
33
description: Make resource files for .NET apps. Build text files with string resources, XML or binary files programmatically, or XML files with string, image, or object data.
4-
ms.date: 03/13/2023
4+
ms.date: 10/20/2025
55
dev_langs:
66
- "csharp"
77
- "vb"

docs/core/extensions/custom-configuration-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Implement a custom configuration provider
33
description: Learn how to implement a custom configuration provider in .NET apps. Explore a database configuration provider that uses Entity Framework Core.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 02/20/2024
6+
ms.date: 10/20/2025
77
ms.topic: how-to
88
---
99

docs/core/extensions/custom-logging-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Implement a custom logging provider
33
description: Discover how to implement a custom logging provider with colorized logs, writing custom C# ILogger and ILoggerProvider implementations.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 03/13/2023
6+
ms.date: 10/20/2025
77
ms.topic: how-to
88
---
99

docs/core/extensions/high-performance-logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: High-performance logging
33
author: IEvangelist
44
description: Learn how to use LoggerMessage to create cacheable delegates that require fewer object allocations for high-performance logging scenarios.
55
ms.author: dapine
6-
ms.date: 04/11/2024
6+
ms.date: 10/20/2025
77
---
88

99
# High-performance logging in .NET

docs/core/extensions/localization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Localization
33
description: Learn the concepts of localization while learning how to use the IStringLocalizer and IStringLocalizerFactory implementations in your .NET workloads.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 02/02/2024
6+
ms.date: 10/20/2025
77
helpviewer_keywords:
88
- "culture, localization"
99
- "application development [.NET], localization"

docs/core/extensions/queue-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create a Queue Service
33
description: Learn how to create a queue service subclass of BackgroundService in .NET.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 12/13/2023
6+
ms.date: 10/20/2025
77
ms.topic: tutorial
88
---
99

docs/core/extensions/service-discovery.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Service discovery in .NET
33
description: Learn how to use the Microsoft.Extensions.ServiceDiscovery library to simplify the integration of service discovery patterns in .NET applications.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 04/10/2024
6+
ms.date: 10/20/2025
77
ms.topic: overview
88
---
99

@@ -18,20 +18,19 @@ To get started with service discovery in .NET, install the [Microsoft.Extensions
1818
### [.NET CLI](#tab/dotnet-cli)
1919

2020
```dotnetcli
21-
dotnet add package Microsoft.Extensions.ServiceDiscovery --prerelease
21+
dotnet add package Microsoft.Extensions.ServiceDiscovery
2222
```
2323

2424
Or, if you're using .NET 10+ SDK:
2525

2626
```dotnetcli
27-
dotnet package add Microsoft.Extensions.ServiceDiscovery --prerelease
27+
dotnet package add Microsoft.Extensions.ServiceDiscovery
2828
```
2929

3030
### [PackageReference](#tab/package-reference)
3131

3232
```xml
33-
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery"
34-
Version="[SelectVersion]" />
33+
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery" />
3534
```
3635

3736
---

docs/core/extensions/timer-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Implement the IHostedService interface
33
description: Learn how to implement a custom IHostedService interface in C#, much like the inbuilt .NET BackgroundService.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 12/13/2023
6+
ms.date: 10/20/2025
77
ms.topic: tutorial
88
---
99

0 commit comments

Comments
 (0)