commands.sh

dotnet restore

all

Restores the dependencies and tools of a .NET project.

More info →

Options (1)

-v, --verbosityboolean

Restore dependencies with a specific verbosity level

Example: dotnet restore {{[-v|--verbosity]}} {{quiet|minimal|normal|detailed|diagnostic}}

Examples (6)

Restore dependencies for a .NET project or solution in the current directory

Restore dependencies for a .NET project or solution in a specific location

dotnet restore path/to/project_or_solution

Restore dependencies without caching the HTTP requests

dotnet restore --no-http-cache

Force all dependencies to be resolved even if the last restore was successful

Restore dependencies using package source failures as warnings

dotnet restore --ignore-failed-sources

Restore dependencies with a specific verbosity level

dotnet restore [-v|--verbosity] quiet|minimal|normal|detailed|diagnostic
made by @shridhargupta | data from tldr-pages