Routine 6.1.3

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

// Install Routine as a Cake Tool
#tool nuget:?package=Routine&version=6.1.3

Routine

Routine is a service framework for building efficient, scalable .NET server-side applications. It enables you to quickly create HTTP APIs from your existing code base.

Consider below example;

public class GreetingService
{
    public string Greet(PersonDto person)
    {
        return $"Hello {person}!";
    }
}

public record PersonDto(string Name, string Surname);

To expose Greet method as a service, below configuration is sufficient;

app.UseRoutine(
    serviceConfiguration: sc => sc.FromBasic(),
    codingStyle: cs => cs.FromBasic()
        .AddTypes(typeof(Startup).Assembly, t => t.IsPublic)

        //Service Configuration
        .Locator.Set(c => c
            .Locator(l => l.Singleton(t => t.CreateInstance()))
            .When(t => t.Name.EndsWith("Service"))
        )
        .Operations.Add(c => c
            .PublicMethods()
            .When(t => t.Name.EndsWith("Service"))
        )

        //Dto Configuration
        .Initializers.Add(c => c
            .PublicConstructors()
            .When(t => t.Name.EndsWith("Dto"))
        )
        .Datas.Add(c => c
            .PublicProperties()
            .When(t => t.Name.EndsWith("Dto"))
        )
);

You can navigate through sample projects in samples folder to see example usages.

Routine was developed in inventiv for internal use and has been used in production since 2014. Any contribution is welcome and appreciated.

Have fun!

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 Routine:

Package Downloads
Gazel.Configuration

Gazel is a back-end development framework for the .NET framework. This package contains the configuration layer of Gazel and should be used in your app projects.

Gazel.Client

Gazel is a back-end development framework for the .NET framework. This package contains the service client layer of Gazel and should be used in your .NET applications that consume your back-end services.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.1.3 2,347 2/7/2023
6.1.2 392 2/3/2023
6.1.1 403 1/19/2023
6.1.0 1,235 11/4/2022
6.0.2 713 10/6/2022
6.0.1 461 9/30/2022
6.0.0 410 9/21/2022
0.9.6 4,726 3/28/2022
0.9.5 545 12/9/2021
0.9.4 307 12/9/2021
0.9.3 281 12/7/2021
0.9.2 315 11/3/2021
0.9.1 330 8/26/2021
0.9.0 328 8/26/2021
0.8.3 500 2/12/2021
0.8.2 682 3/10/2020
0.8.1 466 2/4/2020
0.8.0 544 12/18/2019