Skip to content

Commit ebd3bd4

Browse files
CopilotIEvangelist
andcommitted
Update freshness dates for final 16 articles and remove version pinning/prerelease flags
Co-authored-by: IEvangelist <[email protected]>
1 parent 7cab484 commit ebd3bd4

19 files changed

+23
-30
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/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/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/service-discovery.md

Lines changed: 3 additions & 10 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,13 @@ 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
22-
```
23-
24-
Or, if you're using .NET 10+ SDK:
25-
26-
```dotnetcli
27-
dotnet package add Microsoft.Extensions.ServiceDiscovery --prerelease
21+
dotnet add package Microsoft.Extensions.ServiceDiscovery
2822
```
2923

3024
### [PackageReference](#tab/package-reference)
3125

3226
```xml
33-
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery"
34-
Version="[SelectVersion]" />
27+
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery" />
3528
```
3629

3730
---

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

docs/core/extensions/windows-service-with-installer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create a Windows Service installer
33
description: Learn how to create a Windows Service installer project.
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/work-with-resx-files-programmatically.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Working with .resx Files Programmatically"
33
description: Create or retrieve data from XML resource (.resx) files programmatically using types and members in the System.Resources namespace of the .NET Class Library.
4-
ms.date: 03/13/2023
4+
ms.date: 10/20/2025
55
dev_langs:
66
- "csharp"
77
- "vb"

docs/core/resilience/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Introduction to resilient app development
33
description: Learn about resiliency as it relates to .NET and how to build a resilience pipeline.
44
author: IEvangelist
55
ms.author: dapine
6-
ms.date: 11/29/2023
6+
ms.date: 10/20/2025
77
---
88

99
# Introduction to resilient app development
@@ -27,13 +27,13 @@ To get started with resilience in .NET, install the [Microsoft.Extensions.Resili
2727
### [.NET CLI](#tab/dotnet-cli)
2828

2929
```dotnetcli
30-
dotnet add package Microsoft.Extensions.Resilience --version 8.0.0
30+
dotnet add package Microsoft.Extensions.Resilience
3131
```
3232

3333
### [PackageReference](#tab/package-reference)
3434

3535
```xml
36-
<PackageReference Include="Microsoft.Extensions.Resilience" Version="8.0.0" />
36+
<PackageReference Include="Microsoft.Extensions.Resilience" />
3737
```
3838

3939
---

0 commit comments

Comments
 (0)