Skip to content

Commit 4e50716

Browse files
authored
.NET Core CLI --> .NET CLI (#41299)
1 parent 3b51d46 commit 4e50716

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/core/whats-new/dotnet-core-2-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ For example, to create a Visual Basic "Hello World" application, do the followin
6868

6969
The command creates a project file with a `.vbproj` file extension, along with a Visual Basic source code file named *Program.vb*. This file contains the source code to write the string "Hello World!" to the console window.
7070

71-
1. Enter the command `dotnet run`. The [.NET Core CLI](../tools/index.md) automatically compiles and executes the application, which displays the message "Hello World!" in the console window.
71+
1. Enter the command `dotnet run`. The [.NET CLI](../tools/index.md) automatically compiles and executes the application, which displays the message "Hello World!" in the console window.
7272

7373
### Support for C# 7.1
7474

docs/core/whats-new/dotnet-core-2-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ You can modify this setting in any of three ways:
106106
"rollForwardOnNoCandidateFx" : 0
107107
```
108108

109-
- When using the [.NET Core CLI](../tools/index.md), add the following option with the desired value to a .NET Core command such as `run`:
109+
- When using the [.NET CLI](../tools/index.md), add the following option with the desired value to a .NET command such as `run`:
110110

111111
```dotnetcli
112112
dotnet run --rollForwardOnNoCandidateFx=0

docs/standard/data/sqlite/custom-versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ description: Learn how to use a custom version of the native SQLite library.
2323

2424
For example, to use the unofficial, open-source build of `SQLCipher` use the following commands.
2525

26-
### [.NET Core CLI](#tab/netcore-cli)
26+
### [.NET CLI](#tab/net-cli)
2727

2828
```dotnetcli
2929
dotnet add package Microsoft.Data.Sqlite.Core
@@ -54,7 +54,7 @@ When not relying on a bundle, you can use the available providers of SQLite with
5454

5555
To use the `sqlite3` provider use the following commands:
5656

57-
### [.NET Core CLI](#tab/netcore-cli)
57+
### [.NET CLI](#tab/net-cli)
5858

5959
```dotnetcli
6060
dotnet add package Microsoft.Data.Sqlite.Core

docs/standard/data/sqlite/encryption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SQLite doesn't support encrypting database files by default. Instead, you need t
99

1010
## Installation
1111

12-
### [.NET Core CLI](#tab/netcore-cli)
12+
### [.NET CLI](#tab/net-cli)
1313

1414
```dotnetcli
1515
dotnet remove package Microsoft.Data.Sqlite

docs/standard/data/sqlite/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Microsoft.Data.Sqlite is a lightweight [ADO.NET](../../../framework/data/adonet/
1111

1212
The latest stable version is available on [NuGet](https://www.nuget.org/packages/Microsoft.Data.Sqlite).
1313

14-
### [.NET Core CLI](#tab/netcore-cli)
14+
### [.NET CLI](#tab/net-cli)
1515

1616
```dotnetcli
1717
dotnet add package Microsoft.Data.Sqlite

0 commit comments

Comments
 (0)