OwlCore.ComponentModel
0.8.0
See the version list below for details.
dotnet add package OwlCore.ComponentModel --version 0.8.0
NuGet\Install-Package OwlCore.ComponentModel -Version 0.8.0
<PackageReference Include="OwlCore.ComponentModel" Version="0.8.0" />
paket add OwlCore.ComponentModel --version 0.8.0
#r "nuget: OwlCore.ComponentModel, 0.8.0"
// 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 | 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. |
.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
- CommunityToolkit.Diagnostics (>= 8.2.2)
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- System.Linq.Async (>= 6.0.1)
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. |
|
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.Nomad
A lightweight distributed event sourcing framework. |
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.9.1 | 616 | 9/14/2024 |
0.9.0 | 248 | 9/7/2024 |
0.8.2 | 952 | 7/28/2024 |
0.8.1 | 1,238 | 5/22/2024 |
0.8.0 | 1,521 | 4/27/2024 |
0.7.0 | 806 | 3/18/2024 |
0.6.0 | 701 | 11/15/2023 |
0.5.0 | 111 | 11/15/2023 |
0.4.0 | 2,545 | 5/14/2023 |
0.3.0 | 2,988 | 2/23/2023 |
0.2.0 | 498 | 11/18/2022 |
0.1.2 | 339 | 11/9/2022 |
0.1.1 | 325 | 11/9/2022 |
0.1.0 | 318 | 11/9/2022 |
0.0.0 | 10,651 | 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.