Skip to content

Commit e9fa00d

Browse files
rename tab name
1 parent 58a58dd commit e9fa00d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Finish the quickstart [Create a .NET app with App Configuration](./quickstart-do
3535

3636
Open the `Program.cs` file and update the code configurations to match the following:
3737

38-
### [ASP.NET Core 6.0+](#tab/core6x)
38+
### [.NET 6.0+](#tab/core6x)
3939

4040
```csharp
4141
using Microsoft.Extensions.Configuration;
@@ -72,7 +72,7 @@ if (_refresher != null)
7272
}
7373
```
7474

75-
### [ASP.NET Core 3.x](#tab/core3x)
75+
### [.NET Core 3.x](#tab/core3x)
7676

7777
```csharp
7878
using Microsoft.Extensions.Configuration;

articles/azure-app-configuration/quickstart-dotnet-core-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a
6464
6565
4. Use App Configuration by calling the `builder.AddAzureAppConfiguration()` method in the `Program.cs` file.
6666
67-
### [ASP.NET Core 6.0+](#tab/core6x)
67+
### [.NET 6.0+](#tab/core6x)
6868
6969
```csharp
7070
var builder = new ConfigurationBuilder();
@@ -74,7 +74,7 @@ You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a
7474
Console.WriteLine(config["TestApp:Settings:Message"] ?? "Hello world!");
7575
```
7676
77-
### [ASP.NET Core 3.x](#tab/core3x)
77+
### [.NET Core 3.x](#tab/core3x)
7878
7979
```csharp
8080
static void Main(string[] args)

0 commit comments

Comments
 (0)