System.Collections.Immutable.nuspec 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
  3. <metadata>
  4. <id>System.Collections.Immutable</id>
  5. <version>6.0.0</version>
  6. <authors>Microsoft</authors>
  7. <license type="expression">MIT</license>
  8. <licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
  9. <icon>Icon.png</icon>
  10. <projectUrl>https://dot.net/</projectUrl>
  11. <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.
  12. Commonly Used Types:
  13. System.Collections.Immutable.ImmutableArray
  14. System.Collections.Immutable.ImmutableArray&lt;T&gt;
  15. System.Collections.Immutable.ImmutableDictionary
  16. System.Collections.Immutable.ImmutableDictionary&lt;TKey,TValue&gt;
  17. System.Collections.Immutable.ImmutableHashSet
  18. System.Collections.Immutable.ImmutableHashSet&lt;T&gt;
  19. System.Collections.Immutable.ImmutableList
  20. System.Collections.Immutable.ImmutableList&lt;T&gt;
  21. System.Collections.Immutable.ImmutableQueue
  22. System.Collections.Immutable.ImmutableQueue&lt;T&gt;
  23. System.Collections.Immutable.ImmutableSortedDictionary
  24. System.Collections.Immutable.ImmutableSortedDictionary&lt;TKey,TValue&gt;
  25. System.Collections.Immutable.ImmutableSortedSet
  26. System.Collections.Immutable.ImmutableSortedSet&lt;T&gt;
  27. System.Collections.Immutable.ImmutableStack
  28. System.Collections.Immutable.ImmutableStack&lt;T&gt;</description>
  29. <releaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</releaseNotes>
  30. <copyright>© Microsoft Corporation. All rights reserved.</copyright>
  31. <serviceable>true</serviceable>
  32. <repository type="git" url="https://github.com/dotnet/runtime" commit="4822e3c3aa77eb82b2fb33c9321f923cf11ddde6" />
  33. <dependencies>
  34. <group targetFramework=".NETFramework4.6.1">
  35. <dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" exclude="Build,Analyzers" />
  36. <dependency id="System.Memory" version="4.5.4" exclude="Build,Analyzers" />
  37. </group>
  38. <group targetFramework="net6.0">
  39. <dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" exclude="Build,Analyzers" />
  40. </group>
  41. <group targetFramework=".NETStandard2.0">
  42. <dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" exclude="Build,Analyzers" />
  43. <dependency id="System.Memory" version="4.5.4" exclude="Build,Analyzers" />
  44. </group>
  45. </dependencies>
  46. </metadata>
  47. </package>