Skip to content

Commit 6ed7400

Browse files
Point extensions docs to .NET content (#20100)
* Point extensions docs to .NET content * work * work * Update aspnetcore/fundamentals/host/generic-host.md Co-authored-by: Tom Dykstra <tdykstra@microsoft.com> * work * work * work Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>
1 parent c64c47f commit 6ed7400

5 files changed

Lines changed: 15 additions & 3 deletions

File tree

aspnetcore/fundamentals/configuration/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Configuration in ASP.NET Core is performed using one or more [configuration prov
2626
* Directory files
2727
* In-memory .NET objects
2828

29+
This topic provides information on configuration in ASP.NET Core. For information on using configuration in console apps, see [.NET Configuration](/dotnet/core/extensions/configuration).
30+
2931
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/fundamentals/configuration/index/samples) ([how to download](xref:index#how-to-download-a-sample))
3032

3133
<a name="default"></a>

aspnetcore/fundamentals/configuration/options.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ The options pattern uses classes to provide strongly typed access to groups of r
2222

2323
Options also provide a mechanism to validate configuration data. For more information, see the [Options validation](#options-validation) section.
2424

25+
This topic provides information on the options pattern in ASP.NET Core. For information on using the options pattern in console apps, see [Options pattern in .NET](/dotnet/core/extensions/options).
26+
2527
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/fundamentals/configuration/options/samples) ([how to download](xref:index#how-to-download-a-sample))
2628

2729
<a name="optpat"></a>

aspnetcore/fundamentals/dependency-injection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ For more information specific to dependency injection within MVC controllers, se
2121

2222
For more information on dependency injection of options, see <xref:fundamentals/configuration/options>.
2323

24+
This topic provides information on dependency injection in ASP.NET Core. For information on using dependency injection in console apps, see [Dependency injection in .NET](/dotnet/core/extensions/dependency-injection).
25+
2426
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/fundamentals/dependency-injection/samples) ([how to download](xref:index#how-to-download-a-sample))
2527

2628
## Overview of dependency injection

aspnetcore/fundamentals/host/generic-host.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
---
2-
title: .NET Generic Host
2+
title: .NET Generic Host in ASP.NET Core
33
author: rick-anderson
4-
description: Learn about the .NET Core Generic Host, which is responsible for app startup and lifetime management.
4+
description: Use .NET Core Generic Host in ASP.NET Core apps. Generic Host is responsible for app startup and lifetime management.
55
monikerRange: '>= aspnetcore-2.1'
66
ms.author: riande
77
ms.custom: mvc
88
ms.date: 4/17/2020
99
no-loc: ["ASP.NET Core Identity", cookie, Cookie, Blazor, "Blazor Server", "Blazor WebAssembly", "Identity", "Let's Encrypt", Razor, SignalR]
1010
uid: fundamentals/host/generic-host
1111
---
12-
# .NET Generic Host
12+
# .NET Generic Host in ASP.NET Core
1313

1414
::: moniker range=">= aspnetcore-5.0"
1515

1616
The ASP.NET Core templates create a .NET Core Generic Host (<xref:Microsoft.Extensions.Hosting.HostBuilder>).
1717

18+
This topic provides information on using .NET Generic Host in ASP.NET Core. For information on using .NET Generic Host in console apps, see [.NET Generic Host](/dotnet/core/extensions/generic-host).
19+
1820
## Host definition
1921

2022
A *host* is an object that encapsulates an app's resources, such as:
@@ -514,6 +516,8 @@ public class Program
514516

515517
The ASP.NET Core templates create a .NET Core Generic Host (<xref:Microsoft.Extensions.Hosting.HostBuilder>).
516518

519+
This topic provides information on using .NET Generic Host in ASP.NET Core. For information on using .NET Generic Host in console apps, see [.NET Generic Host](/dotnet/core/extensions/generic-host).
520+
517521
## Host definition
518522

519523
A *host* is an object that encapsulates an app's resources, such as:

aspnetcore/fundamentals/logging/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ By [Kirk Larkin](https://twitter.com/serpent5), [Juergen Gutsch](https://github.
1919

2020
Most of the code examples shown in this article are from ASP.NET Core apps. The logging-specific parts of these code snippets apply to any .NET Core app that uses the [Generic Host](xref:fundamentals/host/generic-host). The ASP.NET Core web app templates use the Generic Host.
2121

22+
This topic provides information on logging in ASP.NET Core. For information on logging in console apps, see [.NET Logging](/dotnet/core/extensions/logging).
23+
2224
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/fundamentals/logging/index/samples/3.x) ([how to download](xref:index#how-to-download-a-sample))
2325

2426
<a name="lp"></a>

0 commit comments

Comments
 (0)