Hello!
A few days ago, I was listening aĀ .NET RocksĀ podcast andĀ the guest commented the different flavors (pain?) we have today.for Ā NET.Ā When we think in. NET, we always think in .NET Framework, but is easy get five or more different versions of. NET.: Xamarin, Mono, Silverlight, .NET Core, .NET Compact Framework and others. Those are different versions of what initially was thought in a single platform.
So today, when the product team announced .NET Standard they presented this scenario with this amazing picture:

This is the mainĀ reason to create .NET Standard as a single set of APIS whichĀ must be implemented in all the .NETĀ platforms. Another view of this is to think in aĀ base class library with the basic features we need when we buildĀ an application. Regardless of whether it is for cloud, desktop, mobile, etc.

I think that this gives a good idea of what you can expect from .NET Standard in the future. While the points that are discussed in the post are also interesting:
- .NET Standard is a set of APIs that all .NET platforms have to implement. This unifies the .NET platforms and prevents future fragmentation.
- .NET Standard 2.0 will be implemented by .NET Framework, .NET Core, and Xamarin. For .NET Core, this will add many of the existing APIs that have been requested.
- .NET Standard 2.0 includes a compatibility shim for .NET Framework binaries, significantly increasing the set of libraries that you can reference fromĀ your .NET Standard libraries.
- .NET Standard will replace Portable Class Libraries (PCLs) as theĀ tooling story for building multi-platform .NET libraries.
- You can see the .NET Standard API definition in the dotnet/standardĀ repo on GitHub.
Greetings @ Toronto
El Bruno
References
- MSDN Blogs, Introducing .Net Standard
- Podcast, .Net Rocks
- GitHub, DotNet Standard
Leave a comment