What are the specific differences between dotnet build and Visual Studio 2022 build? #10963
Labels
Documentation
Issues about docs, including errors and areas we should extend (this repo and learn.microsoft.com)
Priority:2
Work that is important, but not critical for the release
triaged
Judging from the build logs,
dotnet build
will start on its own first and recursively compile the project dependencies.However,
Visual Studio 2022 build
seems to sort out all the dependency relationships first, and finally compile each project only once from the front to the back.dotnet build log:
Visual Studio 2022 build log:
So how can we get a clear understanding of these differences?
The text was updated successfully, but these errors were encountered: