Meshmakers.Octo.Sdk.Packages.Industry.Logistics 3.4.67

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

Octo Construction Kit

Domain-specific data model packages for the OctoMesh platform. Each Construction Kit (CK) defines a bounded context with types, records, attributes, enumerations and associations — all described in YAML and compiled into NuGet packages at build time.

For a comprehensive guide on Construction Kits, see the official documentation.

Available Construction Kits

Package Model ID Depends On Description
Basic Basic-2.0.2 System Core domain model (Asset, Employee, Document, TreeNode, ...)
Basic.Accounting Basic.Accounting-1.5.1 Basic Accounting and billing domain
Basic.Energy Basic.Energy-1.2.0 Basic Base energy domain types (metering points, EDA, energy measurements)
Industry.Basic Industry.Basic-2.1.3 Basic Extended industrial domain model
Industry.Energy Industry.Energy-3.1.0 Industry.Basic Energy sector specific types
Industry.Fluid Industry.Fluid-2.0.0 Industry.Basic Fluid system management
Industry.Logistics Industry.Logistics-1.0.0 Basic Logistics/fulfillment orders, shipments and stock
Industry.Maintenance Industry.Maintenance-2.0.0 Industry.Basic Maintenance operations and scheduling
Industry.Manufacturing Industry.Manufacturing-2.1.1 Industry.Basic Production orders and manufacturing
Environment Environment-3.1.0 Basic Environmental data and monitoring
EnergyCommunity EnergyCommunity-4.0.0 Basic, Basic.Energy Energy community management (community/billing types on top of Basic.Energy; metering data lives in stream-data archives since 4.0.0)

Demo Packages

Package Model ID Description
Octo.Sdk.Demo OctoSdkDemo-2.0.1 General SDK demo
Octo.Energy.Demo OctoEnergyDemo Energy domain demo

Dependency Graph

System
  └── Basic
        ├── Basic.Accounting
        ├── Basic.Energy
        │     └── EnergyCommunity
        ├── Environment
        ├── Industry.Logistics
        ├── OctoSdkDemo
        └── Industry.Basic
              ├── Industry.Energy
              ├── Industry.Fluid
              ├── Industry.Maintenance
              └── Industry.Manufacturing

Project Structure

octo-construction-kit/
├── src/
│   ├── ConstructionKits/       # All CK implementations
│   ├── Samples/                # Import scripts and sample data
│   └── grafana/                # Grafana dashboard definitions
├── tests/                      # System tests
├── devops-build/               # Azure Pipelines CI/CD
├── assets/                     # Brand assets (icons)
├── Directory.Build.props       # Global MSBuild properties
└── Octo.ConstructionKit.sln    # Solution file

Construction Kit Layout

Each CK project follows the same structure:

Octo.Sdk.Packages.XXX/
├── ConstructionKit/
│   ├── ckModel.yaml            # Metadata: modelId, dependencies
│   ├── types/                  # Entity definitions (e.g. Asset.yaml)
│   ├── records/                # Value objects (e.g. Address.yaml)
│   ├── attributes/             # Attribute specifications
│   ├── enums/                  # Enumerations
│   └── associations/           # Relationship definitions
└── Octo.Sdk.Packages.XXX.csproj

Technology Stack

  • .NET 10.0 / C# (latest major)
  • YAML for model definitions (validated against JSON schemas)
  • MSBuild Tasks compile YAML into C# source code and CK library artifacts
  • NuGet for package distribution
  • xUnit + FakeItEasy for testing
  • Azure Pipelines for CI/CD

How It Works

  1. Domain models are authored as YAML files inside ConstructionKit/ directories
  2. At build time, Meshmakers.Octo.ConstructionKit.MsBuildTasks validates the YAML against schemas
  3. Meshmakers.Octo.ConstructionKit.SourceGeneration generates C# classes (entities, attributes, enums, associations)
  4. A compiled CK library (ck-*.yaml) is produced as a build artifact
  5. NuGet packages are generated automatically (GeneratePackageOnBuild)

Getting Started

Prerequisites

Build

# Restore and build
dotnet build Octo.ConstructionKit.sln --configuration Release

# Local development build (uses version 999.0.0, includes local nuget folder)
dotnet build Octo.ConstructionKit.sln --configuration DebugL

# With private NuGet server
dotnet build Octo.ConstructionKit.sln --configuration Release /p:OctoNugetPrivateServer=https://your-nuget-server

Test

# Run all tests (excluding system tests)
dotnet test Octo.ConstructionKit.sln --configuration Release --filter "FullyQualifiedName!~SystemTests"

Creating a New Construction Kit

  1. Create a project folder under src/ConstructionKits/
  2. Add a .csproj referencing:
    • Meshmakers.Octo.Runtime.Contracts
    • Meshmakers.Octo.ConstructionKit.SourceGeneration (analyzer)
    • Meshmakers.Octo.ConstructionKit.MsBuildTasks
  3. Create a ConstructionKit/ directory with a ckModel.yaml:
    $schema: https://schemas.meshmakers.cloud/construction-kit-meta.schema.json
    modelId: YourModelId
    dependencies:
      - Basic-[2.0,3.0)
    
  4. Add YAML definitions in types/, records/, attributes/, enums/, associations/ subdirectories
  5. Add the project to Octo.ConstructionKit.sln
  6. Update devops-build/azure-pipelines.yml for CI artifact publishing

Sample Data

The src/Samples/ directory contains PowerShell scripts for importing sample data into an OctoMesh instance:

  • om_importck.ps1 -- Import construction kits
  • om_create_tenants.ps1 / om_delete_tenants.ps1 -- Tenant management
  • om_importrt_sample_*.ps1 -- Import runtime sample data (general, maintenance, simulation, PV)

Sample data sets cover maintenance, simulator, PV (photovoltaic), and zenon integration scenarios.

Build Configurations

Configuration Version NuGet Sources Purpose
Debug Default nuget.org Development
Release 3.3.* nuget.org Production builds
DebugL 999.0.0 nuget.org + local ../nuget/ Local cross-repo development

License

MIT -- Copyright (c) 2026 meshmakers.io

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.

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
3.4.67 0 7/31/2026
3.4.65 33 7/30/2026
3.4.64 37 7/29/2026
3.4.62 87 7/27/2026
3.4.60 86 7/27/2026
3.4.59 83 7/27/2026
3.4.55 93 7/25/2026
3.4.54 86 7/24/2026
3.4.53 90 7/24/2026
3.4.51 94 7/21/2026
3.4.49 85 7/20/2026
3.4.47 93 7/20/2026
3.4.46 98 7/19/2026
3.4.45 94 7/17/2026
3.4.44 88 7/15/2026
3.4.42 90 7/15/2026
3.4.41 94 7/14/2026
3.4.40 89 7/13/2026
3.4.38 95 7/13/2026