Under the hood of dotnet build

6 months ago
7

Ever wonder what is happening when you run a dotnet build? How do you go from a simple csproj file to a compiled application?

Turns out there are alot of conventions (aka magic) via the SDK attribute that you can take a look at with the -pp/preprocess option to msbuild.

-pp is an invaluable tool for learning how builds work and troubleshooting problems.

Loading comments...