Answered Need some clarification on 'dotnet restore' and 'dotnet build'

Sc011_

New member
Joined
Apr 14, 2020
Messages
2
Programming Experience
Beginner
im using a course to learn C# right now and the guy is talking about using dotnet run, he brought up dotnet restore and dotnet build but didnt explain it too great. does the restore and build happen simultaneously in the dotnet run command? do i have to run these commands individually to build the .dll file? any help or advice on this would be greatly appreciated.

- Sc011_
 
run implicitly does restore and build unless you use options not to. Read more about them: .NET Core CLI
 
Back
Top Bottom