Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/core/tools/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To add a dependency, run the [dotnet package add](dotnet-package-add.md) command
dotnet package add Microsoft.EntityFrameworkCore
```

To remove a dependency, run the [dotnet package remove](dotnet-package-remove.md) command, as shown in the following example:
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.)

```dotnetcli
dotnet package remove Microsoft.EntityFrameworkCore
Expand Down
2 changes: 1 addition & 1 deletion docs/standard/data/sqlite/encryption.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ SQLite doesn't support encrypting database files by default. Instead, you need t
### [.NET CLI](#tab/net-cli)

```dotnetcli
dotnet package remove Microsoft.Data.Sqlite
dotnet remove package Microsoft.Data.Sqlite
dotnet add package Microsoft.Data.Sqlite.Core
dotnet add package SQLitePCLRaw.bundle_e_sqlcipher
```
Expand Down