Forrest logo
back to context overview

dotnet-restore

List of commands for dotnet-restore:

  • dotnet-restore:tldr:03ab0 dotnet-restore: Restore dependencies for a .NET project or solution in a specific location.
    $ dotnet restore ${path-to-project_or_solution}
    try on your machine
    explain this command
  • dotnet-restore:tldr:0d85e dotnet-restore: Restore dependencies using package source failures as warnings.
    $ dotnet restore --ignore-failed-sources
    try on your machine
    explain this command
  • dotnet-restore:tldr:46505 dotnet-restore: Restore dependencies with a specific verbosity level.
    $ dotnet restore --verbosity ${select}
    try on your machine
    explain this command
  • dotnet-restore:tldr:64022 dotnet-restore: Restore dependencies for a .NET project or solution in the current directory.
    $ dotnet restore
    try on your machine
    explain this command
  • dotnet-restore:tldr:78ae2 dotnet-restore: Restore dependencies without caching the HTTP requests.
    $ dotnet restore --no-cache
    try on your machine
    explain this command
  • dotnet-restore:tldr:e3467 dotnet-restore: Force all dependencies to be resolved even if the last restore was successful.
    $ dotnet restore --force
    try on your machine
    explain this command
back to context overview