DKNet.Svc.BlobStorage.Local
9.0.2
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.2
NuGet\Install-Package DKNet.Svc.BlobStorage.Local -Version 9.0.2
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.2" />
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.2" />
<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.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DKNet.Svc.BlobStorage.Local, 9.0.2"
#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.2
#: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.2
#tool nuget:?package=DKNet.Svc.BlobStorage.Local&version=9.0.2
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.2)
- 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 |
|---|---|---|
| 10.0.5 | 47 | 11/24/2025 |
| 10.0.4 | 43 | 11/24/2025 |
| 10.0.3 | 306 | 11/21/2025 |
| 10.0.2 | 366 | 11/20/2025 |
| 9.5.40 | 376 | 11/19/2025 |
| 9.5.39 | 292 | 11/13/2025 |
| 9.5.38 | 202 | 11/6/2025 |
| 9.5.37 | 182 | 11/5/2025 |
| 9.5.36 | 181 | 11/5/2025 |
| 9.5.35 | 184 | 11/4/2025 |
| 9.5.34 | 170 | 11/4/2025 |
| 9.5.33 | 184 | 11/3/2025 |
| 9.5.32 | 179 | 11/3/2025 |
| 9.5.31 | 150 | 10/31/2025 |
| 9.5.30 | 158 | 10/31/2025 |
| 9.5.29 | 175 | 10/30/2025 |
| 9.5.28 | 167 | 10/27/2025 |
| 9.5.27 | 171 | 10/27/2025 |
| 9.5.26 | 165 | 10/27/2025 |
| 9.5.25 | 166 | 10/26/2025 |
| 9.5.24 | 92 | 10/25/2025 |
| 9.5.23 | 92 | 10/25/2025 |
| 9.5.22 | 88 | 10/25/2025 |
| 9.5.21 | 161 | 10/24/2025 |
| 9.5.20 | 164 | 10/23/2025 |
| 9.5.19 | 157 | 10/23/2025 |
| 9.5.18 | 163 | 10/22/2025 |
| 9.5.17 | 142 | 10/17/2025 |
| 9.5.16 | 138 | 10/17/2025 |
| 9.5.15 | 165 | 10/15/2025 |
| 9.5.14 | 166 | 10/14/2025 |
| 9.5.13 | 164 | 10/14/2025 |
| 9.5.12 | 168 | 10/14/2025 |
| 9.5.11 | 162 | 10/14/2025 |
| 9.5.10 | 158 | 10/14/2025 |
| 9.5.9 | 167 | 10/13/2025 |
| 9.5.8 | 88 | 10/11/2025 |
| 9.5.7 | 116 | 10/10/2025 |
| 9.5.6 | 124 | 10/10/2025 |
| 9.5.5 | 123 | 10/10/2025 |
| 9.5.4 | 126 | 10/10/2025 |
| 9.5.3 | 158 | 10/8/2025 |
| 9.5.2 | 161 | 10/8/2025 |
| 9.5.1 | 161 | 10/7/2025 |
| 9.0.42 | 166 | 10/6/2025 |
| 9.0.41 | 170 | 10/2/2025 |
| 9.0.40 | 107 | 9/27/2025 |
| 9.0.39 | 144 | 9/26/2025 |
| 9.0.38 | 172 | 9/24/2025 |
| 9.0.37 | 175 | 9/23/2025 |
| 9.0.36 | 164 | 9/23/2025 |
| 9.0.35 | 175 | 9/23/2025 |
| 9.0.34 | 179 | 9/23/2025 |
| 9.0.33 | 165 | 9/21/2025 |
| 9.0.32 | 162 | 9/21/2025 |
| 9.0.31 | 289 | 9/19/2025 |
| 9.0.30 | 303 | 9/18/2025 |
| 9.0.29 | 285 | 9/18/2025 |
| 9.0.28 | 296 | 9/17/2025 |
| 9.0.27 | 279 | 9/17/2025 |
| 9.0.26 | 294 | 9/16/2025 |
| 9.0.25 | 240 | 9/15/2025 |
| 9.0.24 | 234 | 9/15/2025 |
| 9.0.23 | 101 | 9/6/2025 |
| 9.0.22 | 166 | 9/3/2025 |
| 9.0.21 | 168 | 9/1/2025 |
| 9.0.20 | 171 | 7/15/2025 |
| 9.0.19 | 164 | 7/14/2025 |
| 9.0.18 | 167 | 7/14/2025 |
| 9.0.17 | 165 | 7/14/2025 |
| 9.0.16 | 143 | 7/11/2025 |
| 9.0.15 | 137 | 7/11/2025 |
| 9.0.14 | 151 | 7/11/2025 |
| 9.0.13 | 160 | 7/11/2025 |
| 9.0.12 | 163 | 7/8/2025 |
| 9.0.11 | 163 | 7/8/2025 |
| 9.0.10 | 165 | 7/7/2025 |
| 9.0.9 | 173 | 7/2/2025 |
| 9.0.8 | 179 | 7/2/2025 |
| 9.0.7 | 190 | 7/1/2025 |
| 9.0.5 | 161 | 6/24/2025 |
| 9.0.4 | 175 | 6/24/2025 |
| 9.0.3 | 168 | 6/23/2025 |
| 9.0.2 | 175 | 6/23/2025 |
| 9.0.1 | 175 | 6/23/2025 |
| 0.0.1 | 365 | 11/19/2025 |