Understanding .NET 6 cross-platform and cloud application support
.NET has many implementations. Each implementation contains runtimes, libraries, application frameworks (optional), and development tools. There are four .NET implementations:
- .NET Framework
- .NET 6
- Universal Windows Platform (UWP)
- Mono
And the set of API specifications common to all these implementations is .NET Standard.
Multiple .NET implementations enable you to create .NET applications targeting many operating systems. You can build .NET applications for the following:
Table 2.4 – .NET implementations
Let's understand more about .NET implementations:
- .NET Framework is the initial implementation of .NET. Using .NET Framework, you can develop Windows, WPF, web applications, and web and WCF services, targeting the Windows operating system. .NET Framework 4.5 and above implement .NET Standard, so libraries that are built targeting .NET Standard...