CodeTiger.Core
                             
                            
                                2.0.0-beta09
                            
                        
                    See the version list below for details.
dotnet add package CodeTiger.Core --version 2.0.0-beta09
NuGet\Install-Package CodeTiger.Core -Version 2.0.0-beta09
<PackageReference Include="CodeTiger.Core" Version="2.0.0-beta09" />
<PackageVersion Include="CodeTiger.Core" Version="2.0.0-beta09" />
<PackageReference Include="CodeTiger.Core" />
paket add CodeTiger.Core --version 2.0.0-beta09
#r "nuget: CodeTiger.Core, 2.0.0-beta09"
#:package CodeTiger.Core@2.0.0-beta09
#addin nuget:?package=CodeTiger.Core&version=2.0.0-beta09&prerelease
#tool nuget:?package=CodeTiger.Core&version=2.0.0-beta09&prerelease
A .NET library that provides a variety of reusable functionality, including packed integers (PackedInt16, PackedInt32, and PackedInt64), guard methods, various extension methods, and classes related to the Task Parallel Library (AsyncLazy, AsyncLock, AsyncAutoResetEvent, and AsyncManualResetEvent).
| Product | Versions Compatible and additional computed target framework versions. | 
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. | 
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. | 
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. | 
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. | 
| MonoAndroid | monoandroid was computed. | 
| MonoMac | monomac was computed. | 
| MonoTouch | monotouch was computed. | 
| Tizen | tizen40 was computed. tizen60 was computed. | 
| Xamarin.iOS | xamarinios was computed. | 
| Xamarin.Mac | xamarinmac was computed. | 
| Xamarin.TVOS | xamarintvos was computed. | 
| Xamarin.WatchOS | xamarinwatchos was computed. | 
- 
                                                    .NETStandard 2.0- No dependencies.
 
NuGet packages (1)
Showing the top 1 NuGet packages that depend on CodeTiger.Core:
| Package | Downloads | 
|---|---|
| CodeTiger.Azure.Cosmos A .NET library that provides additional functionality for interacting with Azure Cosmos DB. | 
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | 
|---|---|---|
| 2.1.2 | 24,892 | 9/24/2022 | 
| 2.1.0 | 8,306 | 10/22/2021 | 
| 2.0.0 | 2,190 | 9/7/2020 | 
| 2.0.0-beta13 | 640 | 2/12/2020 | 
| 2.0.0-beta10 | 645 | 11/7/2019 | 
| 2.0.0-beta09 | 559 | 11/7/2019 | 
| 2.0.0-beta01 | 692 | 3/17/2019 | 
| 1.2.0 | 45,832 | 5/13/2017 | 
| 1.1.0 | 1,522 | 10/6/2016 | 
| 1.0.1 | 1,593 | 10/8/2015 | 
| 1.0.0 | 1,729 | 4/29/2015 | 
| 1.0.0-rc1 | 1,282 | 4/5/2015 | 
-Changed target framework to netstandard2.0.
-Changed Guard methods to return the relevant value when the condition is met.
-Added a Contains extension method to determine whether one string contains another string while using a specified StringComparison value.
-Added FromInt16, FromInt32, and FromInt64 methods to PackedInt16, PackedInt32, and PackedInt64.
-Added the IEquatable<T> interface to PackedInt16, PackedInt32, and PackedInt64 classes.
-Moved exception messages to a resource file.
-Disposed of the CancellationTokenSource used by TaskExtensions.WithTimeout methods.
-Explicitly specified the task scheduler to use for several Task-related calls.
-Migrated the CodeTiger.Core NuGet package from PackageLicenseUrl and PackageIconUrl to PackageLicenseFile and PackageIcon.
-Changed the symbol package format of CodeTiger.Core to snupkg.
-Added SourceLink properties to the CodeTiger.Core NuGet package.
For 1.2.0:
-Added support for netstandard1.0 and portable-net45+win8+wpa81+wp8 frameworks.
-Added IsCompilerGenerated and IsStatic extension methods for System.Type and System.Reflection.TypeInfo.
-Added ArgumentIsWithinRange, ArgumentIsNotNullOrEmpty, ArgumentIsNotNullOrWhiteSpace, and ObjectHasNotBeenDisposed guard methods.
-Removed unnecessary Task.Run wrappers in synchronous methods of AsyncLock and AsyncWaitHandle.
-Changed TaskExtensions.WithTimeout implementations to use TaskContinuationOptions.ExecuteSynchronously for their continuations.
-Modified TaskExtensions.WithTimeout to use TaskContinuationOptions.DenyChildAttach and TaskScheduler.Default.