YngveHestem.Storage.Abstractions 1.0.1

dotnet add package YngveHestem.Storage.Abstractions --version 1.0.1
                    
NuGet\Install-Package YngveHestem.Storage.Abstractions -Version 1.0.1
                    
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="YngveHestem.Storage.Abstractions" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="YngveHestem.Storage.Abstractions" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="YngveHestem.Storage.Abstractions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add YngveHestem.Storage.Abstractions --version 1.0.1
                    
#r "nuget: YngveHestem.Storage.Abstractions, 1.0.1"
                    
#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.
#:package YngveHestem.Storage.Abstractions@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=YngveHestem.Storage.Abstractions&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=YngveHestem.Storage.Abstractions&version=1.0.1
                    
Install as a Cake Tool

YngveHestem.Storage.Abstractions

A small, focused library that defines storage abstractions used by the solution. This project contains the core interfaces and default types used across other implementations and samples in the repository.

What this project provides

  • Interfaces for storage items, files and folders: IStorageItem, IStorageFile, IStorageFolder.
  • Provider abstraction: IStorageProvider for pluggable storage backends.
  • Default property implementations used by providers: DefaultStorageFileProperties, DefaultStorageFolderProperties.

Who should use this

This package is useful if you want to write code that interacts with files and folders without depending on a specific storage backend. Implement IStorageProvider to support new backends (local filesystem, WebDAV, cloud services, etc.).

Quick start

  1. Add a reference to YngveHestem.Storage.Abstractions (NuGet or project reference).
  2. Implement IStorageProvider or use one of the existing providers, which already references this package (like YngveHestem.Storage.Local (NuGet), YngveHestem.Storage.WebDAV (NuGet)).
  3. Consume IStorageFolder and IStorageFile to enumerate and operate on files and folders.

Contributing and support

See the repository-level README for contribution guidelines and links to samples. If you open issues, please include a short description and reproduction steps.

License

See the top-level LICENSE file for license details.

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

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on YngveHestem.Storage.Abstractions:

Package Downloads
YngveHestem.Storage.Local

Local filesystem storage provider implementation for the YngveHestem.Storage abstractions.

YngveHestem.Storage.WebDAV

WebDAV storage provider implementation for the YngveHestem.Storage abstractions.

YngveHestem.FileDialog.GumMonoGame

MonoGame and Gum-based file dialog implementation for cross-platform file and folder selection.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 279 11/23/2025
1.0.0 252 11/23/2025

- Initial release