dotnet restore: add page (#4341)

beep
Axel Navarro 2020-09-30 14:59:59 -03:00 committed by GitHub
parent 7c681eea51
commit 21586f40d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
# dotnet restore
> Restores the dependencies and tools of a .NET project.
> More information: <https://docs.microsoft.com/dotnet/core/tools/dotnet-restore>.
- Restore dependencies for a .NET project or solution in the current directory:
`dotnet restore`
- 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-cache`
- Force all dependencies to be resolved even if the last restore was successful:
`dotnet restore --force`
- Restore dependencies using package source failures as warnings:
`dotnet restore --ignore-failed-sources`
- Restore dependencies with a specific verbosity level:
`dotnet restore --verbosity {{quiet|minimal|normal|detailed|diagnostic}}`