Skip to content

Commit 20e14a8

Browse files
authored
switch order (#45882)
1 parent 96deeaa commit 20e14a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/core/tools/dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To add a dependency, run the [dotnet package add](dotnet-package-add.md) command
5959
dotnet package add Microsoft.EntityFrameworkCore
6060
```
6161

62-
To remove a dependency, run the [dotnet package remove](dotnet-package-remove.md) command, as shown in the following example:
62+
To remove a dependency, run the [dotnet package remove](dotnet-package-remove.md) command, as shown in the following example. (If you're using an SDK version of .NET 9 or earlier, use the `dotnet remove package` form instead.)
6363

6464
```dotnetcli
6565
dotnet package remove Microsoft.EntityFrameworkCore

docs/standard/data/sqlite/encryption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SQLite doesn't support encrypting database files by default. Instead, you need t
1212
### [.NET CLI](#tab/net-cli)
1313

1414
```dotnetcli
15-
dotnet package remove Microsoft.Data.Sqlite
15+
dotnet remove package Microsoft.Data.Sqlite
1616
dotnet add package Microsoft.Data.Sqlite.Core
1717
dotnet add package SQLitePCLRaw.bundle_e_sqlcipher
1818
```

0 commit comments

Comments
 (0)