NetActive.CleanArchitecture.Application 6.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package NetActive.CleanArchitecture.Application --version 6.0.5
NuGet\Install-Package NetActive.CleanArchitecture.Application -Version 6.0.5
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="NetActive.CleanArchitecture.Application" Version="6.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetActive.CleanArchitecture.Application --version 6.0.5
#r "nuget: NetActive.CleanArchitecture.Application, 6.0.5"
#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 NetActive.CleanArchitecture.Application as a Cake Addin
#addin nuget:?package=NetActive.CleanArchitecture.Application&version=6.0.5

// Install NetActive.CleanArchitecture.Application as a Cake Tool
#tool nuget:?package=NetActive.CleanArchitecture.Application&version=6.0.5

NetActive.CleanArchitecture

NetActive.CleanArchitecture is a set of libraries supporting Clean Architecture development in .NET (6+).

Source code and examples can be found on GitHub. The NuGet packages, including debug symbols, can be found on NuGet.

Inspired by the video series Clean Architecture: Patterns, Practices and Principles on PluralSight by Matthew Renze, I started creating these libraries around the idea of Clean Architecture a few years ago.

The open source community has given me so much over the past decade, I decided it was time to give something back. Since I find them very practicle and I recently ported them to .NET 6 and Entity Framework Core 6, I felt it was the right time to share these Clean Architecture libraries with the rest of the world.

Focus is on simplifying implementation of and support for these Clean Architecture patterns and practices in new .NET projects. These libraries have already been under active development for a few years and applied in real life production applications many times.

Please check them out and feel free to share your thoughts and ideas by contacting me or submitting a pull request.

Besides the source code you'll also find practicle examples on how to use these libraries in Console applications, Web applications or API's. Here's a quick example (from the Example.Console.CommandAdd example project) of what your application code could look like:

using Autofac;
using Example.Application.Manufacturer.Commands.AddManufacturer;
using Example.Application.Manufacturer.Commands.AddManufacturer.Models;
using MediatR;

// Build single-instance DI container.
var builder = new ContainerBuilder();
Example.Shared.AutofacConfig.RegisterComponents(builder, singleInstance: true);
var container = builder.Build();

using (var scope = container.BeginLifetimeScope())
{
    // Create manufacturer model.
    var manufacturerName = $"My Manufacturer ({DateTime.Now:yyyyMMddHHmmsssmmm})";
    var manufacturerToAdd = new AddManufacturerCommandModel(manufacturerName)
        {
            Contact =
                {
                    FamilyName = "Brink",
                    GivenName = "Raymond" // Optional
                }
        };

    // Execute add manufacturer command.
    var command = new AddManufacturerCommand(manufacturerToAdd);
    var result = await scope.Resolve<ISender>().Send(command);

    Console.WriteLine($"Added: {result}: {manufacturerToAdd.ManufacturerName}");
    Console.WriteLine();
}

Under the hood these libraries try to apply the following principles and patterns:

If you're a programmer and you haven't heared of these yet, please check out Uncle Bob Martin and Martin Fowler. You might learn a thing or two 😉

Also check out these projects as they are priceless and essential for these libraries to shine:

Happy coding!

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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 NetActive.CleanArchitecture.Application:

Package Downloads
NetActive.CleanArchitecture.Persistence

Handles generic data access and persistence

NetActive.CleanArchitecture.Application.EntityFrameworkCore

Handles command and query construction and execution for Entity Framework Core

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.3.0 664 9/28/2023
6.2.1 717 9/5/2023
6.1.0 716 8/23/2023
6.1.0-alpha.2 60 8/18/2023
6.1.0-alpha.1 59 8/18/2023
6.0.9 1,626 4/28/2023
6.0.8 948 3/20/2023
6.0.7 933 2/28/2023
6.0.5 1,058 2/18/2023