DKNet.Svc.BlobStorage.Local
9.0.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package DKNet.Svc.BlobStorage.Local --version 9.0.1
NuGet\Install-Package DKNet.Svc.BlobStorage.Local -Version 9.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="DKNet.Svc.BlobStorage.Local" Version="9.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DKNet.Svc.BlobStorage.Local" Version="9.0.1" />
<PackageReference Include="DKNet.Svc.BlobStorage.Local" />
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 DKNet.Svc.BlobStorage.Local --version 9.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DKNet.Svc.BlobStorage.Local, 9.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 DKNet.Svc.BlobStorage.Local@9.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=DKNet.Svc.BlobStorage.Local&version=9.0.1
#tool nuget:?package=DKNet.Svc.BlobStorage.Local&version=9.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DKNet.Services.FileStorage
How to use it?
There are 2 adapters provided by this service.
- Local file storage.
- Azure storage.
1. Configuration sample as below:
{
...,
"FileService": {
"LocalFolder": {
"RootFolder": "FileStorage"
},
"AzureStorage": {
"ConnectionString": "DefaultEndpointsProtocol=https;AccountName=...;EndpointSuffix=core.windows.net",
"ContainerName": "DKNet"
}
}
}
2. Service configuration as below:
var config = new ConfigurationBuilder()
.AddJsonFile("appsettings.json")
.Build();
var service = new ServiceCollection()
.AddLogging()
.AddFileService()
.AddAzureStorageAdapter(config)
.AddLocalFolderAdapter(config)
.BuildServiceProvider();
var instance = service.GetRequiredService<IFileService>();
...
3. Customize the adapter.
- The adapter must be implemented of interface
IFileAdapter
. - Add adapter to the ServiceCollection.
var service = new ServiceCollection()
.AddLogging()
.AddFileService()
.AddFileAdapter<YourAdapter>()
.BuildServiceProvider();
Note that if there are more than 1 Adapters provided. The file will be copied to all Adapters.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- DKNet.Svc.BlobStorage.Abstractions (>= 9.0.1)
- Meziantou.Analyzer (>= 2.0.202)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.6)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.6)
- Microsoft.Extensions.Options (>= 9.0.6)
- System.Memory.Data (>= 9.0.6)
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 |
---|---|---|
9.0.38 | 36 | 9/24/2025 |
9.0.37 | 43 | 9/23/2025 |
9.0.36 | 45 | 9/23/2025 |
9.0.35 | 42 | 9/23/2025 |
9.0.34 | 43 | 9/23/2025 |
9.0.33 | 56 | 9/21/2025 |
9.0.32 | 59 | 9/21/2025 |
9.0.31 | 242 | 9/19/2025 |
9.0.30 | 252 | 9/18/2025 |
9.0.29 | 253 | 9/18/2025 |
9.0.28 | 257 | 9/17/2025 |
9.0.27 | 256 | 9/17/2025 |
9.0.26 | 263 | 9/16/2025 |
9.0.25 | 208 | 9/15/2025 |
9.0.24 | 201 | 9/15/2025 |
9.0.23 | 70 | 9/6/2025 |
9.0.22 | 143 | 9/3/2025 |
9.0.21 | 134 | 9/1/2025 |
9.0.20 | 146 | 7/15/2025 |
9.0.19 | 139 | 7/14/2025 |
9.0.18 | 140 | 7/14/2025 |
9.0.17 | 138 | 7/14/2025 |
9.0.16 | 117 | 7/11/2025 |
9.0.15 | 121 | 7/11/2025 |
9.0.14 | 127 | 7/11/2025 |
9.0.13 | 132 | 7/11/2025 |
9.0.12 | 147 | 7/8/2025 |
9.0.11 | 147 | 7/8/2025 |
9.0.10 | 140 | 7/7/2025 |
9.0.9 | 148 | 7/2/2025 |
9.0.8 | 153 | 7/2/2025 |
9.0.7 | 158 | 7/1/2025 |
9.0.5 | 143 | 6/24/2025 |
9.0.4 | 144 | 6/24/2025 |
9.0.3 | 144 | 6/23/2025 |
9.0.2 | 143 | 6/23/2025 |
9.0.1 | 147 | 6/23/2025 |