Routine 8.0.0
dotnet add package Routine --version 8.0.0
NuGet\Install-Package Routine -Version 8.0.0
<PackageReference Include="Routine" Version="8.0.0" />
paket add Routine --version 8.0.0
#r "nuget: Routine, 8.0.0"
// Install Routine as a Cake Addin #addin nuget:?package=Routine&version=8.0.0 // Install Routine as a Cake Tool #tool nuget:?package=Routine&version=8.0.0
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 | Versions 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. |
-
net8.0
- Microsoft.CodeAnalysis.CSharp (>= 4.3.0)
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 |
---|---|---|
8.0.0 | 267 | 6/26/2024 |
6.1.3 | 2,837 | 2/7/2023 |
6.1.2 | 432 | 2/3/2023 |
6.1.1 | 437 | 1/19/2023 |
6.1.0 | 1,284 | 11/4/2022 |
6.0.2 | 745 | 10/6/2022 |
6.0.1 | 492 | 9/30/2022 |
6.0.0 | 443 | 9/21/2022 |
0.9.6 | 4,887 | 3/28/2022 |
0.9.5 | 572 | 12/9/2021 |
0.9.4 | 332 | 12/9/2021 |
0.9.3 | 307 | 12/7/2021 |
0.9.2 | 343 | 11/3/2021 |
0.9.1 | 359 | 8/26/2021 |
0.9.0 | 357 | 8/26/2021 |
0.8.3 | 530 | 2/12/2021 |
0.8.2 | 711 | 3/10/2020 |
0.8.1 | 493 | 2/4/2020 |
0.8.0 | 571 | 12/18/2019 |