LosNet.Core 0.0.99-test

This is a prerelease version of LosNet.Core.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package LosNet.Core --version 0.0.99-test
                    
NuGet\Install-Package LosNet.Core -Version 0.0.99-test
                    
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="LosNet.Core" Version="0.0.99-test" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LosNet.Core" Version="0.0.99-test" />
                    
Directory.Packages.props
<PackageReference Include="LosNet.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LosNet.Core --version 0.0.99-test
                    
#r "nuget: LosNet.Core, 0.0.99-test"
                    
#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.
#:package LosNet.Core@0.0.99-test
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LosNet.Core&version=0.0.99-test&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=LosNet.Core&version=0.0.99-test&prerelease
                    
Install as a Cake Tool

LosNet.Core

LosNet.Core is the core package of the LosNet framework, providing a lightweight and extensible foundation for local Saga orchestration in .NET applications.

This package contains only core abstractions and orchestration infrastructure.
It does not include any messaging or persistence implementations.


Key Responsibilities

  • Defines core orchestration abstractions
  • Provides the local orchestrator engine
  • Integrates with .NET Dependency Injection
  • Uses the standard Options pattern for configuration

What This Package Does NOT Do

  • Does not start any background processes
  • Does not communicate with message queues
  • Does not persist state
  • Does not trigger workflows automatically

LosNet.Core follows a passive framework model and becomes active only when explicitly invoked by the consuming application.


Installation

dotnet add package LosNet.Core

Registration

builder.Services.AddLosNet(options =>
{
    options.ServiceName = "MyService";
});

Usage

public class SampleHandler
{
    private readonly ILocalOrchestrator _orchestrator;

    public SampleHandler(ILocalOrchestrator orchestrator)
    {
        _orchestrator = orchestrator;
    }

    public void Handle()
    {
        _orchestrator.Info();
    }
}

Adapter-Based Architecture

LosNet follows an adapter-based design. Messaging systems and persistence providers are integrated through separate NuGet packages.

The core package does not depend on any infrastructure-specific libraries.

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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated