-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AOT/trimming compat, increment lib versions
- Loading branch information
Showing
9 changed files
with
43 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,29 @@ | ||
# Singulink Collections Version History | ||
|
||
## V3.0 | ||
### Singulink.Collections | ||
- Breaking change: Deprecated `Singulink.Collections.Abstractions` package. Types have been merged into the main `Singulink.Collections` package. | ||
- Performance improvements to `ListDictionary<,>.ValueList` and `HashSetDictionary<,>.ValueSet`. | ||
- Documentation updates. | ||
|
||
## V2.0.1 | ||
### Singulink.Collections.Weak | ||
- Documentation updates. | ||
|
||
## V2.0 | ||
### All packages | ||
- Removed support for end-of-life .NET and .NET Framework runtimes with a build warning if used on an unsupported runtime | ||
- Minor memory usage/GC pressure/performance optimizations | ||
|
||
### Singulink.Collections.Weak | ||
- Minor bug fix to validation of `AutoCleanAddCount` property setters in `Collections.Weak` (thanks [@procudin](https://github.com/procudin)!) | ||
|
||
### Singulink.Collections | ||
- Breaking change: `AsTransient()` methods on value lists and value sets was renamed to `AsTransientReadOnly()` | ||
# Singulink Collections Version History | ||
|
||
## Singulink.Collections | ||
|
||
### V3.1 | ||
- Full support for AOT and trimming | ||
|
||
### V3.0 | ||
- Breaking change: Deprecated `Singulink.Collections.Abstractions` package. Types have been merged into the main `Singulink.Collections` package | ||
- Performance improvements to `ListDictionary<,>.ValueList` and `HashSetDictionary<,>.ValueSet` | ||
- Documentation updates | ||
|
||
### V2.0 | ||
- Breaking change: `AsTransient()` methods on value lists and value sets was renamed to `AsTransientReadOnly()` | ||
- Removed support for end-of-life .NET and .NET Framework runtimes with a build warning if used on an unsupported runtime | ||
- Minor memory usage/GC pressure/performance optimizations | ||
|
||
## Singulink.Collections.Weak | ||
|
||
### V2.1 | ||
- Full support for AOT and trimming | ||
|
||
### V2.0.1 | ||
- Documentation updates | ||
|
||
### V2.0 | ||
- Removed support for end-of-life .NET and .NET Framework runtimes with a build warning if used on an unsupported runtime | ||
- Minor memory usage/GC pressure/performance optimizations | ||
- Minor bug fix to validation of `AutoCleanAddCount` property setters in `Collections.Weak` (thanks [@procudin](https://github.com/procudin)!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
10 changes: 3 additions & 7 deletions
10
Source/Singulink.Collections.Weak/Singulink.Collections.Weak.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks> | ||
<RootNamespace>Singulink.Collections</RootNamespace> | ||
|
||
<Version>2.0.1</Version> | ||
<Version>2.1.0</Version> | ||
<PackageTags>weak, dictionary, value, collection, list</PackageTags> | ||
<Description>Collection classes that store weak references to values so that they can be garbage collected when they are no longer needed.</Description> | ||
<PackageProjectUrl>https://github.com/Singulink/Singulink.Collections.Weak</PackageProjectUrl> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
|
||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>key.snk</AssemblyOriginatorKeyFile> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'netstandard2.1'"> | ||
<ItemGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('netstandard2.1', '$(TargetFramework)'))"> | ||
<PackageReference Include="PolySharp" Version="1.14.1" PrivateAssets="All" /> | ||
</ItemGroup> | ||
</Project> |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.