OwlCore.ComponentModel 0.8.0

dotnet add package OwlCore.ComponentModel --version 0.8.0
NuGet\Install-Package OwlCore.ComponentModel -Version 0.8.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.ComponentModel" Version="0.8.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OwlCore.ComponentModel --version 0.8.0
#r "nuget: OwlCore.ComponentModel, 0.8.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.ComponentModel as a Cake Addin
#addin nuget:?package=OwlCore.ComponentModel&version=0.8.0

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

Provides classes that are used to implement the run-time behavior of components.

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 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. 
.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 (7)

Showing the top 5 NuGet packages that depend on OwlCore.ComponentModel:

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.Extensions

A collection of exceptionally useful extension methods.

OwlCore.Kubo

An essential toolkit for Kubo, IPFS and the distributed web.

OwlCore.Storage.SharpCompress

Provides a generic archive implementation via SharpCompress for the OwlCore.Storage APIs. Verified support for `.7z`, `.tar`, and `.zip` archives created by 7Zip and `.zip` archives by Windows File Explorer. Reading and writing GZip archives is partially supported with the same limitations as SharpCompress.

OwlCore.AbstractUI

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on OwlCore.ComponentModel:

Repository Stars
Arlodotexe/strix-music
Combine any music sources into a single library. It's your music. Play it your way.
Version Downloads Last updated
0.8.0 88 4/27/2024
0.7.0 380 3/18/2024
0.6.0 556 11/15/2023
0.5.0 79 11/15/2023
0.4.0 2,154 5/14/2023
0.3.0 2,786 2/23/2023
0.2.0 455 11/18/2022
0.1.2 303 11/9/2022
0.1.1 293 11/9/2022
0.1.0 291 11/9/2022
0.0.0 10,062 9/6/2022

--- 0.8.0 ---
[New]
Added IFlushable
Added IHasId
Added ISources
Added IReadOnlySources
Added WritableLazySeekStream. Writes are held in the underlying LazySeekStream.MemoryStream and are written to a given destination stream on flush.

[Improvements]
Removed internal IsExternalInit in favor of PolySharp.
MemoryStream and SourceStream are now protected instead of private on LazySeekStream.
     
--- 0.7.0 ---
[Breaking]
SettingsBase has been moved into a separate package, OwlCore.ComponentModel.Settings. This allows us to remove the dependency on OwlCore.Storage, which is not strictly needed for most consumers of this package.

--- 0.6.0 ---
[New]
Added LengthOverrideStream, a simple Stream wrapper that allows overriding the Length property.

[Fixes]
Fixed numerous remaining issues with LazySeekStream, including seeking past end of stream and seeking from SeekOrigin.End.

--- 0.5.0 ---
[New]
Added LazySeekStream. Wraps around a non-seekable stream to enable seeking functionality with lazy loading of the source.

--- 0.4.0 ---
[New]
Added IDelegable to replace IDelegatable in a future release.
Added NotifyCollectionChangedEventHandler and NotifyCollectionChangedEventArgs to replace CollectionChangedEventHandler and CollectionChangedItem in a future release.

[Improvements]
Marked IDelegatable as Obsolete. Will be renamed to IDelegable in a future release.
Marked CollectionChangedEventHandler as Obsolete. Will be replaced with a generic NotifyCollectionChangedEventHandler in the future.
     
--- 0.3.0 ---
[Breaking]
Inherited breaking changes from OwlCore.Storage 0.8.x.

[Improvements]
Updated all package dependencies to latest stable version.

--- 0.2.0 ---
[New]
Added SettingsBase.OnPropertyChanged(string) method. Allows cleaner INPC invocation.

[Improvements]
All events in SettingsBase are now virtual.

--- 0.1.2 ---
[Fixes]
Fixed an issue where SettingsBase couldn't parse the type data for an Enum.

--- 0.1.1 ---
[Fixes]
Fixed a possible multiple enumeration when calling SettingsBase.SaveAsync.

--- 0.1.0 ---
[New]
SettingsBase.HasUnsavedChanges has been added, with notification support.

[Improvements]
All public and protected methods in SettingsBase are now virtual.

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