
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 machineexplain this command
-
dotnet-restore:tldr:0d85e dotnet-restore: Restore dependencies using package source failures as warnings.$ dotnet restore --ignore-failed-sourcestry on your machineexplain this command
-
dotnet-restore:tldr:46505 dotnet-restore: Restore dependencies with a specific verbosity level.$ dotnet restore --verbosity ${select}try on your machineexplain this command
-
dotnet-restore:tldr:64022 dotnet-restore: Restore dependencies for a .NET project or solution in the current directory.$ dotnet restoretry on your machineexplain this command
-
dotnet-restore:tldr:78ae2 dotnet-restore: Restore dependencies without caching the HTTP requests.$ dotnet restore --no-cachetry on your machineexplain this command
-
dotnet-restore:tldr:e3467 dotnet-restore: Force all dependencies to be resolved even if the last restore was successful.$ dotnet restore --forcetry on your machineexplain this command