EssentialLayers 1.2.0
See the version list below for details.
dotnet add package EssentialLayers --version 1.2.0
NuGet\Install-Package EssentialLayers -Version 1.2.0
<PackageReference Include="EssentialLayers" Version="1.2.0" />
paket add EssentialLayers --version 1.2.0
#r "nuget: EssentialLayers, 1.2.0"
// Install EssentialLayers as a Cake Addin #addin nuget:?package=EssentialLayers&version=1.2.0 // Install EssentialLayers as a Cake Tool #tool nuget:?package=EssentialLayers&version=1.2.0
Essential Layers
Essential layers is a library based in a way of work functional to start a project from scratch
with a structure designed with Result handling, Cache, Error handling, Blobs, Helpers, Extensions and Web Requests.
Configure
Add the dependencies in your Program.cs file
builder.Services.AddEssentialLayers();
To use the services provided:
You need to configure an extra code to be available like a dependency in your project.
If you want to use a Blob Serivice
You need to set the connection string of Azure blob in your Program.cs file.
app.Services.ConfigureAzureBlob(CONNECTION_STRING_BLOBS);
If you want to use the Http Service
You need to set the app info in your Program.cs file.
app.Services.ConfigureHttp(
new HttpWebServiceOption {
AppName = "LicensesApp",
AppVersion = "1.0",
BearerToken = Bearer_Token
}
);
Or set when the bearer token have been already initialized.
app.Services.ConfigureHttpToken(BEARER_TOKEN);
Created by Mario Soto Moreno
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | 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.1
- Azure.Storage.Blobs (>= 12.22.1)
- Microsoft.Extensions.Caching.Memory (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.IdentityModel.Tokens (>= 8.1.0)
- System.IdentityModel.Tokens.Jwt (>= 8.1.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on EssentialLayers:
Package | Downloads |
---|---|
EssentialLayers.Request
EssentialLayers.Request is a complement to the package `EssentialLayers` to provide an extra layer for using http requests in an easy way. |
|
EssentialLayers.Dapper
EssentialLayers.Dapper is a complement to the package EssentialLayers to offer an extra layer with the ORM dapper in an easy way, where the main purpose will be, write the business logic in the "stored procedures" using templates that receiving input parameters and return a result set, Currently is just compatible with SQL Server. |
|
EssentialLayers.AzureBlobs
EssentialLayers.AzureBlobs is a complement to the package `EssentialLayers` to provide an extra layer to use Azure Blobs in an easy way. |
|
EssentialLayers.Token
EssentialLayers.Token is a complement to the package `EssentialLayers` to provide an extra layer for using extension & helpers of Token in an easy way. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.4.5 | 277 | 11/11/2024 |
1.4.4 | 81 | 11/11/2024 |
1.4.3 | 80 | 11/11/2024 |
1.4.2 | 95 | 11/11/2024 |
1.4.1 | 74 | 11/11/2024 |
1.4.0 | 127 | 11/10/2024 |
1.3.1 | 208 | 11/4/2024 |
1.3.0 | 284 | 10/27/2024 |
1.2.0 | 197 | 9/29/2024 |
1.1.9 | 91 | 9/2/2024 |
1.1.8 | 82 | 8/31/2024 |
1.1.7 | 84 | 8/30/2024 |
1.1.7-preview.1.0.0 | 49 | 8/30/2024 |
1.1.6 | 88 | 8/30/2024 |
1.1.5 | 88 | 8/30/2024 |
1.1.4 | 88 | 8/30/2024 |
1.1.3 | 97 | 8/30/2024 |
1.1.2 | 89 | 8/29/2024 |
1.1.1 | 93 | 8/28/2024 |
1.1.0 | 100 | 8/27/2024 |
1.0.1 | 116 | 8/21/2024 |
1.0.0 | 118 | 8/19/2024 |
It was uncoupled Dapper to a new package called EssentialLayers.Dapper