Acubec.Solutions.Core 8.0.3

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

// Install Acubec.Solutions.Core as a Cake Tool
#tool nuget:?package=Acubec.Solutions.Core&version=8.0.3

Project Title

Acubec.Solutions.Core

Description

this .Net library helps .net developer to developed domain driven application. This library is build on top of .net core and provide the following features.

  • DomainDriven Architecture separation
  • StateMachine
  • Compile time Mapper
  • Validator
  • Encryption/Hashing/JWT Token
  • API Helper
  • Context Manager

Example

To Use this library first create call as below classes in your project.

public class OrchestratorContext(IServiceCollection containerCollection, IConfiguration configuration) 
	: BaseContext(containerCollection, configuration)
{
}

Mapping registration

-

internal sealed class Mapper : MapperConfiguration
{
    public override void CreateProfile()
    {
        CreateMap<Source, Destination>((s, d) =>
        {
           //write your compile time mapping here
        });       
    }
}

After that you need to attach this class in your project

-

var context = new OrchestratorContext(services, configuration);
AppContextProvider.RegisterObject(context);

var mapper = new AcubecMapper(new Mapper());
services.AddSingleton(typeof(IMapper), mapper);

Now you can use all the below interface in the project

This project is licensed under the MIT License - see the LICENSE.md file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Acubec.Solutions.Core:

Package Downloads
Acubec.Solutions.Utilities

Package Description

Acubec.Solutions.Utilities.Blazor

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.3 69 4/8/2024
8.0.2 66 4/5/2024
8.0.1 103 3/12/2024
8.0.0 214 12/6/2023
6.0.3 749 8/25/2022
6.0.2 997 8/24/2022
6.0.1 783 1/1/2022
6.0.0 1,046 11/8/2021
3.0.10 973 7/21/2020
3.0.9 955 7/13/2020
3.0.8 1,039 7/4/2020
3.0.7 983 5/26/2020
3.0.1 998 5/7/2020
1.0.0 1,327 7/12/2019