.Net Standard is a set of specifications / APIs which is to
be followed by all .Net implementations like .Net Framework, .Net Core etc. The
specifications are set with the intention to bring in uniformity in .Net
ecosystem. .Net specification also enables developers to produce portal
libraries which are compatible with various .Net implementations which follow
the same .Net Standard.
Every new version of .Net Standard adds new APIs and each version of the implementation targets a specification of .Net Standard, for example the .NET Framework 4.6 implements .NET Standard 1.3
The .NET Standard is targeted at library developers. A library that targets a .NET Standard version can be used on any .NET Framework, .NET Core, or Xamarin implementation that supports that version of the standard. Xamarin
Visual Studio provides a template to create Class Libraries targeting .Net Standard. Libraries created using this template are compatible across .Net implementations.
Every new version of .Net Standard adds new APIs and each version of the implementation targets a specification of .Net Standard, for example the .NET Framework 4.6 implements .NET Standard 1.3
The .NET Standard is targeted at library developers. A library that targets a .NET Standard version can be used on any .NET Framework, .NET Core, or Xamarin implementation that supports that version of the standard. Xamarin
Visual Studio provides a template to create Class Libraries targeting .Net Standard. Libraries created using this template are compatible across .Net implementations.
No comments:
Post a Comment