com.armatsoftware.code.engine.storage.file 4.1.0

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

// Install com.armatsoftware.code.engine.storage.file as a Cake Tool
#tool nuget:?package=com.armatsoftware.code.engine.storage.file&version=4.1.0

Code Engine Storage File Adapter

What is File Adapter?

Code Engine File Adapter is an out of the box implementation of the storage adapter IStorageAdapter contract to manage the subject actions on the file system. It stands between the storage abstraction layer and the persistence layer, whatever it may be: a relational database, blob storage, or file system. In this case, it is the file system.

IStorageAdapter is responsible for the CRUD operations on the subject actions and allows the abstraction layer focus on the action management.

How to use it?

  1. Include file adapter initialization logic to your Startup and supply necessary parameters, usually from IConfiguration. Ex:
    services.UseCodeEngineFileAdapter(new FileStorageOptions()
    {
       FileExtension = "code",
       StoragePath = "/tmp/demo/"
    });
    
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 netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.1.0 105 3/1/2024
4.0.0 91 2/29/2024
3.0.0 100 2/18/2024
2.0.0 88 2/11/2024
1.0.0 80 2/10/2024