. Net Core

including just those NuGet packages which they need in their app. The benefits of a smaller app surface area include tighter security, reduced servicing, improved performance, and decreased costs in a pay-for-what-you-use model. The .NET Core Platform .NET Core Platform contains the following main parts − .NET Runtime − It provides a type system, assembly loading, a garbage collector, native interop and other basic services. Fundamental Libraries − A set of framework libraries, which provide primitive data types, app composition types and fundamental utilities. SDK & Compiler − A set of SDK tools and language compilers that enable the base developer experience, available in the .NET Core SDK. ‘dotnet’ app host − It is used to launch .NET Core apps. It selects the runtime and hosts the runtime, provides an assembly loading policy and launches the app. The same host is also used to launch SDK tools in much the same way.

Comments