When you publish a .NET Core project, you can choose between two deployment modes: Framework-Dependent and Self-Contained.

Framework-Dependent deployments are the default and were previously your only choice on .NET Framework. However, .NET Core has added the option of Self-Contained deployments to .NET projects including ASP.NET Core projects.

In this post, I explain the …

Read More