Explain two types of deployment for .NET Core applications

Technology CommunityCategory: .NET CoreExplain two types of deployment for .NET Core applications
VietMX Staff asked 3 years ago
  • Framework-dependent deployment (FDD) – it relies on the presence of a shared system-wide version of .NET Core on the target system. The app contains only its own code and any third-party dependencies that are outside of the .NET Core libraries. FDDs contain .dll files that can be launched by using the dotnet utility from the command line.
    dotnet app.dll
* **Self-contained deployment** - Unlike FDD, a self-contained deployment (SCD) doesn't rely on the pr