nuget updates
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
|
||||
<metadata minClientVersion="2.8.6">
|
||||
<id>System.Collections.Immutable</id>
|
||||
<version>5.0.0</version>
|
||||
<title>System.Collections.Immutable</title>
|
||||
<authors>Microsoft</authors>
|
||||
<owners>microsoft,dotnetframework</owners>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<license type="expression">MIT</license>
|
||||
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
|
||||
<icon>Icon.png</icon>
|
||||
<projectUrl>https://github.com/dotnet/runtime</projectUrl>
|
||||
<iconUrl>http://go.microsoft.com/fwlink/?LinkID=288859</iconUrl>
|
||||
<description>This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity.
|
||||
|
||||
Commonly Used Types:
|
||||
System.Collections.Immutable.ImmutableArray
|
||||
System.Collections.Immutable.ImmutableArray<T>
|
||||
System.Collections.Immutable.ImmutableDictionary
|
||||
System.Collections.Immutable.ImmutableDictionary<TKey,TValue>
|
||||
System.Collections.Immutable.ImmutableHashSet
|
||||
System.Collections.Immutable.ImmutableHashSet<T>
|
||||
System.Collections.Immutable.ImmutableList
|
||||
System.Collections.Immutable.ImmutableList<T>
|
||||
System.Collections.Immutable.ImmutableQueue
|
||||
System.Collections.Immutable.ImmutableQueue<T>
|
||||
System.Collections.Immutable.ImmutableSortedDictionary
|
||||
System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>
|
||||
System.Collections.Immutable.ImmutableSortedSet
|
||||
System.Collections.Immutable.ImmutableSortedSet<T>
|
||||
System.Collections.Immutable.ImmutableStack
|
||||
System.Collections.Immutable.ImmutableStack<T></description>
|
||||
<releaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</releaseNotes>
|
||||
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
|
||||
<serviceable>true</serviceable>
|
||||
<repository type="git" url="git://github.com/dotnet/runtime" commit="cf258a14b70ad9069470a108f13765e0e5988f51" />
|
||||
<dependencies>
|
||||
<group targetFramework="MonoAndroid1.0" />
|
||||
<group targetFramework="MonoTouch1.0" />
|
||||
<group targetFramework=".NETFramework4.5" />
|
||||
<group targetFramework=".NETFramework4.6">
|
||||
<dependency id="NETStandard.Library" version="1.6.1" />
|
||||
<dependency id="System.Memory" version="4.5.4" />
|
||||
</group>
|
||||
<group targetFramework=".NETFramework4.6.1">
|
||||
<dependency id="System.Memory" version="4.5.4" />
|
||||
</group>
|
||||
<group targetFramework=".NETCoreApp2.1" />
|
||||
<group targetFramework=".NETStandard1.0">
|
||||
<dependency id="NETStandard.Library" version="1.6.1" />
|
||||
</group>
|
||||
<group targetFramework=".NETStandard1.3">
|
||||
<dependency id="NETStandard.Library" version="1.6.1" />
|
||||
<dependency id="System.Memory" version="4.5.4" />
|
||||
</group>
|
||||
<group targetFramework=".NETStandard2.0">
|
||||
<dependency id="System.Memory" version="4.5.4" />
|
||||
</group>
|
||||
<group targetFramework=".NETPortable4.5-Profile259" />
|
||||
<group targetFramework="UAP10.0.16299">
|
||||
<dependency id="System.Memory" version="4.5.4" />
|
||||
</group>
|
||||
<group targetFramework="Windows8.0" />
|
||||
<group targetFramework="WindowsPhone8.0" />
|
||||
<group targetFramework="WindowsPhoneApp8.1" />
|
||||
<group targetFramework="Xamarin.iOS1.0" />
|
||||
<group targetFramework="Xamarin.Mac2.0" />
|
||||
<group targetFramework="Xamarin.TVOS1.0" />
|
||||
<group targetFramework="Xamarin.WatchOS1.0" />
|
||||
</dependencies>
|
||||
<frameworkAssemblies>
|
||||
<frameworkAssembly assemblyName="mscorlib" targetFramework=".NETFramework4.6.1" />
|
||||
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.6.1" />
|
||||
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.6.1" />
|
||||
</frameworkAssemblies>
|
||||
</metadata>
|
||||
</package>
|
||||
Reference in New Issue
Block a user