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.  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. 
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 91 11/30/2024
8.0.4 117 11/11/2024
8.0.3 167 4/8/2024
8.0.2 115 4/5/2024
8.0.1 146 3/12/2024
8.0.0 273 12/6/2023
6.0.3 795 8/25/2022
6.0.2 1,055 8/24/2022
6.0.1 848 1/1/2022
6.0.0 1,103 11/8/2021
3.0.10 1,020 7/21/2020
3.0.9 1,008 7/13/2020
3.0.8 1,084 7/4/2020
3.0.7 1,034 5/26/2020
3.0.1 1,047 5/7/2020
1.0.0 1,379 7/12/2019