Acubec.Solutions.Core 9.0.0

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

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

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 net9.0 is compatible. 
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
9.0.0 83 11/30/2024
8.0.4 112 11/11/2024
8.0.3 164 4/8/2024
8.0.2 112 4/5/2024
8.0.1 145 3/12/2024
8.0.0 272 12/6/2023
6.0.3 791 8/25/2022
6.0.2 1,051 8/24/2022
6.0.1 837 1/1/2022
6.0.0 1,099 11/8/2021
3.0.10 1,013 7/21/2020
3.0.9 998 7/13/2020
3.0.8 1,080 7/4/2020
3.0.7 1,030 5/26/2020
3.0.1 1,042 5/7/2020
1.0.0 1,375 7/12/2019