OwlCore.Extensions 0.7.0

dotnet add package OwlCore.Extensions --version 0.7.0
NuGet\Install-Package OwlCore.Extensions -Version 0.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OwlCore.Extensions" Version="0.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OwlCore.Extensions --version 0.7.0
#r "nuget: OwlCore.Extensions, 0.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OwlCore.Extensions as a Cake Addin
#addin nuget:?package=OwlCore.Extensions&version=0.7.0

// Install OwlCore.Extensions as a Cake Tool
#tool nuget:?package=OwlCore.Extensions&version=0.7.0

A collection of exceptionally useful extension methods.

Product 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 is compatible.  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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on OwlCore.Extensions:

Package Downloads
OwlCore

Have you ever seen an owl do a barrel roll? Me neither. Essential supplemental tooling for .NET development. Included in this package: - OwlCore.Storage: The fundamental concepts of files and folders carefully abstracted into standard interfaces. Interact with Local Disk, Cloud Storage, Blob Storage, protocol-based storage, and even 100% in-memory storage, all using the same interfaces. - OwlCore.Extensions: A collection of exceptionally useful extension methods. - OwlCore.ComponentModel: Provides classes used to implement the run-time behavior of components. SettingsBase, IDelegatable{T}, IAsyncInit, etc. - Much more not listed, much more to come. The experimental, available in separate packages: - OwlCore.Remoting: A extremely lightweight and flexible RPC framework for .NET Standard 2.0. - OwlCore.Kubo: A library of essential tooling for Kubo, the earliest and most widely used implementation of IPFS. - OwlCore.AbstractUI - A set of models with serializable states that can be templated as controls.

OwlCore.Storage.CommonTests

Package Description

OwlCore.AbstractUI

Package Description

OwlCore.Remoting

A lightweight and ultra-flexible RPC framework for .NET Standard 2.0.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.7.0 233 3/18/2024
0.6.0 2,352 11/8/2023
0.5.0 3,655 1/31/2023
0.4.0 677 10/28/2022
0.3.0 7,965 9/6/2022
0.2.0 367 9/6/2022
0.1.0 346 9/6/2022
0.0.0 361 9/6/2022

--- 0.7.0 ---
[Breaking]
Inherited breaking changes from OwlCore.ComponentModel 0.7.0. Removes transient dependency on OwlCore.Storage.

--- 0.6.0 ---
[New]
Added support for net7.0, including nullability improvements.

[Improvements]
DistinctBy is no longer enabled on .NET 6 or greater, removing warnings about ambiguous method calls.

--- 0.5.0 ---
[Fixed]
StreamExtensions.ToBytes and StreamExtensions.ToBytesAsync will no longer attempt to seek when not needed. If seeking is needed but isn't supported by the underlying stream, these extensions will now throw.

[New]
Added EnumerableExtensions.Batch. Yield an IEnumerable in batches instead of yielding one at a time.

--- 0.4.0 ---
[New]
Added AsyncEnumerableExtensions.Batch. Yield an IAsyncEnumerable in batches instead of yielding one at a time.

[Breaking]
Moved Zip extension from AsyncExtensions to new AsyncEnumerableExtensions.

--- 0.3.0 ---
[New]
OwlCore.Flow.EasySemaphore has been ported from the main package as an extension method, as OwlCore.Extensions.SemaphoreSlimExtensions.DisposableWaitAsync.
OwlCore.Flow.WhenCancelled has been ported from the main package as an extension method, as OwlCore.Extensions.AsyncExtensions.WhenCancelledAsync.

--- 0.2.0 ---
[Breaking]
object.Cast has been removed due to excessive interference with Linq. To migrate away from this extension method, use an explicit cast instead.

--- 0.1.0 ---
[Breaking]
CultureInfoExtensions.FromIso636_3(string) has been moved to CultureInfoExtensions.CultureInfoFromThreeLetterIso(string).

[Fix]
CultureInfoExtensions.CultureInfoFromThreeLetterIso(string) is now a proper extension method.
OwlCore.Extensions.GenericExtensions.Cast no longer prevents System.Linq.Enumerable.Cast from being usable when OwlCore.Extensions is referenced.

--- 0.0.0 ---
[New]
Initial separated package release of OwlCore.Extensions. Transferred from OwlCore 0.1.0.

[Breaking]
The Object.DeepCopy() extension method has been removed. It's slow and architecturally unfit for use.
ArrayExtensions.Traverse has been removed, as it was only needed for DeepCopy.
OwlCore.Validation.Mime.MimeTypeMap functionality has been moved to extension methods under StringExtensions.