After .Net Core has been entered in the field of programming languages, many of us .NET developers inevitably chose to migrate from .Net Framework to .Net Core. What was initially very similar to .Net Framework after a while showed that it has serious differences with its father.
In this article, I will try to briefly explain the history of .NET Framework and its progress to .Net Core. I will also tell you how our .Net Core codes will be compiled.
Let’s get started with the history of the .Net Platform introduced by Microsoft Corporation.
I haven't included .Net 5 in the timeline. That is based on .Net Core 3 but it's also the end of both .Net Core and .Net Framework
So, these are the things actually we can not develop on top of .Net Core but It doesn't mean that I can not consume the WCF like ASMX services in a .Net Core application. We can consume but can not develop. There is a known way called Middleware in .Net Core which makes it possible to develop and host WCF services.
The main mission of the Roslyn project is to unlock the process of compiling black boxes and the possibility of using the ultimate tools and users in the wealth of information compilers about our code.
Instead of translating source code and object coding, through the Roslyn project, compilers become services - APIs that you can use to work with code in your tools and applications.
Roslyn makes possible to building code analysis tools with the same APIs that are used by Visual Studio.
CoreCLR is the .NET execution engine in .NET Core, performing functions such as garbage collection and compilation to machine code. .NET Core is a modular implementation of .NET that can be used as the base stack for a wide variety of scenarios, today scaling from console utilities to web apps in the cloud. I really recommend reading this Microsoft article which is the main source of my article.
In Summary CoreCLR:
RyuJIT is a new, next-generation x64 JIT compiler that compiles code twice as fast is ready to change your impressions of 64-bit .NET code.