dotnet core 3.0 Self Contained Single Executable (and other build optimisations)

from blog The Angry Dev, | ↗ original
Applications feel more optimised when their binaries, or set of binaries are small. With dotnet core 3.0 there are some features built in that help facilitate this. Specify the build target First of all, you should specify your build target for your release builds, this will create a binary specifically optimised and targeted for that platform. A...