You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the release of .NET Core SDK 2.0, the dotnet restore command is now implicit for commands that require a restore to occur. In most cases, you no longer need to use dotnet restore. Build systems or other forms of automation may still want to call dotnet restore explicitly to control the time in which the restore occurs and potential uses of the network.
The following commands implicitly call restore:
new
run
build
publish
pack
test
You can pass --no-restore to any of these commands to disable implicit restore.
The .NET Core development experience no longer requires explicit use of the dotnet restore command. This improvement is delivered with the .NET Core 2.0 SDK and works independent of the target framework.
The text was updated successfully, but these errors were encountered:
dotnet restore is now an implicit command
With the release of .NET Core SDK 2.0, the
dotnet restore
command is now implicit for commands that require a restore to occur. In most cases, you no longer need to usedotnet restore
. Build systems or other forms of automation may still want to calldotnet restore
explicitly to control the time in which the restore occurs and potential uses of the network.The following commands implicitly call restore:
new
run
build
publish
pack
test
You can pass
--no-restore
to any of these commands to disable implicit restore.Details
Impact
The .NET Core development experience no longer requires explicit use of the
dotnet restore
command. This improvement is delivered with the .NET Core 2.0 SDK and works independent of the target framework.The text was updated successfully, but these errors were encountered: