Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit fe41c84

Browse files
committed
Merge pull request #1951 from stephentoub/update_readme
Update README.md with additional libraries
2 parents 56f32d3 + 0a6af75 commit fe41c84

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ More libraries are coming soon (the overall list of items we currently plan to m
7070
|**System.Diagnostics.Tools**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Diagnostics.Tools.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides attributes, such as GeneratedCodeAttribute, that are emitted or consumed by analysis tools.</sub>|
7171
|**System.Diagnostics.TraceSource**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Diagnostics.TraceSource.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes that help you trace the execution of your code.</sub>|
7272
|**System.Dynamic.Runtime**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Dynamic.Runtime.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes and interfaces that support the Dynamic Language Runtime (DLR).</sub>|
73-
|**System.Globalization.Extensions**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Globalization.Extensions.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes for performing unicode string normalization, culture-specific string comparisons and support the use of non-ASCII characters for Internet domain names.</sub>|
7473
|**System.Globalization.Calendars**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Globalization.Calendars.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes for performing date calculations using specific calendars, including the Gregorian, Julian, Hijri and Korean calendars.</sub>|
74+
|**System.Globalization.Extensions**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Globalization.Extensions.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes for performing unicode string normalization, culture-specific string comparisons and support the use of non-ASCII characters for Internet domain names.</sub>|
7575
|**System.IO**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.IO.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides base input and output (I/O) types that enable reading and writing data streams.</sub>|
7676
|**System.IO.Compression**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.IO.Compression.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes that support the compression and decompression of streams.</sub>|
7777
|**System.IO.Compression.ZipFile**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.IO.Compression.ZipFile.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides static methods for creating and using Zip files.</sub>|
@@ -106,10 +106,12 @@ More libraries are coming soon (the overall list of items we currently plan to m
106106
|**System.Runtime.Serialization.Json**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Runtime.Serialization.Json.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes for serializing objects to the JavaScript Object Notation (JSON) and for deserializing JSON data to objects.</sub>|
107107
|**System.Runtime.Serialization.Primitives**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Runtime.Serialization.Primitives.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides common types, including System.Runtime.Serialization.DataContractAttribute, for libraries that support data contract serialization.</sub>|
108108
|**System.Runtime.Serialization.Xml**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Runtime.Serialization.Xml.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes for serializing objects to the Extensible Markup Language (XML) and deserializing XML data to objects.</sub>|
109+
|**System.Security.Cryptography.DeriveBytes**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Cryptography.DeriveBytes.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides the System.Security.Cryptography.Rfc2898DeriveBytes class, which implements password-based key derivation functionality per [RFC 2898](http://www.ietf.org/rfc/rfc2898.txt).</sub>|
109110
|**System.Security.Cryptography.Encoding**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Cryptography.Encoding.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides types for representing Abstract Syntax Notation One (ASN.1)-encoded data.</sub>|
110111
|**System.Security.Cryptography.Encryption**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Cryptography.Encryption.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides base types for symmetric and asymmetric cryptographic algorithms.</sub>|
111112
|**System.Security.Cryptography.Hashing**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Cryptography.Hashing.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides base types for cryptographic hashing and hash-based message authentication code (HMAC).</sub>|
112113
|**System.Security.Cryptography.Hashing.Algorithms**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Cryptography.Hashing.Algorithms.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides concrete implementations of cryptographic hashing and hash-based message authentication code (HMAC), including MD5, SHA-1, and SHA-2.</sub>|
114+
|**System.Security.Cryptography.RandomNumberGenerator**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Cryptography.RandomNumberGenerator.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides the System.Security.Cryptography.RandomNumberGenerator class, which generates cryptographically secure random numbers.</sub>|
113115
|**System.Security.Principal**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Principal.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides the base interfaces for principal and identity objects that represent the security context under which code is running.</sub>|
114116
|**System.Security.Principal.Windows**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.Principal.Windows.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides classes for retrieving the current Windows user and for interacting with Windows users and groups.</sub>|
115117
|**System.Security.SecureString**<br/>[![MyGet Package](https://img.shields.io/myget/dotnet-core/v/System.Security.SecureString.svg)](https://www.myget.org/gallery/dotnet-core)|<sub>Provides support for accessing and modifying text that should be kept confidential.</sub>|

0 commit comments

Comments
 (0)