UAPS.SDK 1.2.0

dotnet add package UAPS.SDK --version 1.2.0
                    
NuGet\Install-Package UAPS.SDK -Version 1.2.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="UAPS.SDK" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="UAPS.SDK" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="UAPS.SDK" />
                    
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 UAPS.SDK --version 1.2.0
                    
#r "nuget: UAPS.SDK, 1.2.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.
#:package UAPS.SDK@1.2.0
                    
#: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=UAPS.SDK&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=UAPS.SDK&version=1.2.0
                    
Install as a Cake Tool

UAPS.SDK

.NET client for the U-APS production scheduling engine.

The native engine is bundled in this package under runtimes/{rid}/native/ for every supported platform, so referencing the package is enough — nothing is downloaded at run time.

Install

dotnet add package UAPS.SDK

Quick start

using UAPS.SDK.Client;
using UAPS.SDK.Interop;
using UAPS.SDK.Models;

await NativeLoader.EnsureLoadedAsync();

var job = Job.Create("J1")
    .WithPriority(1)
    .WithDueDate(DateTime.Now.AddHours(8));

job.Operations.Add(
    Operation.Create("O1", "J1", 1)
        .WithTime(0, 60_000, 0)
        .WithEquipment("M1")
        .WithMaterial("MAT-001", 10.0)
);

var client = new SchedulerClient();
var result = client.Schedule(new ScheduleRequest
{
    Jobs = [job],
    Resources = [Resource.CreateEquipment("M1", "Machine 1")],
    DispatchingConfig = new DispatchingConfig
    {
        PrimaryRule = "EDD",
        TieBreaker = "SPT",
    },
});

Console.WriteLine($"Makespan: {result.Schedule.MakespanMs}ms");

Algorithms

Algorithm Type Best for
Simple Dispatching rule Fast baseline, small problems
GeneticAlgorithm Metaheuristic Medium problems (30–200 operations)
Production GA + extensions Setup, split and overlap constraints
Dynamic Time-fence Rescheduling with frozen horizons
CpSat Constraint programming Exact solutions for small problems
Hybrid GA + SA Large problems needing escape from local optima
Auto Adaptive Selects based on problem characteristics

Dispatching rules: FIFO, SPT, LPT, EDD, SLACK, CR, PRIORITY, LWKR, MWKR, MOPNR, RANDOM.

Requirements

  • .NET 10.0 or later
  • Windows x64, Linux x64, macOS x64, or macOS arm64

Licensed under MIT.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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.
  • net10.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
1.2.0 82 9/14/2026
1.1.0 90 9/10/2026
1.0.3 97 9/7/2026
1.0.2 103 9/3/2026
1.0.1 96 9/3/2026
1.0.0 312 11/22/2025