Moongate.Server.Core 0.7.0

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

Moongate

Moongate.Server.Core

Plugin-facing server contracts, events, registries, and dependency injection extensions for Moongate.

Installation

Requires .NET 10. Use the package version available in your configured NuGet feed.

dotnet add package Moongate.Server.Core

Features

  • Plugin contracts, metadata, and registration APIs.
  • Server lifecycle events and an event bus integrated with DryIoc.
  • Registrations for server services, packet handlers, and commands.
  • Contracts and data types for transport connections, sessions, the game loop, timers, world saves, and diagnostics.

Example

Register the event bus and subscribe to a lifecycle event. This example publishes the event manually to demonstrate the bus; it does not start a Moongate server.

using DryIoc;
using Moongate.Server.Core.Data.Events;
using Moongate.Server.Core.Extensions;
using Moongate.Server.Core.Interfaces.Events;

using var container = new Container();
container.RegisterMoongateEventBus();
var bus = container.Resolve<IMoongateEventBus>();

using var subscription = bus.Subscribe<MoongateStartedEvent>((_, cancellationToken) =>
{
    Console.WriteLine("Started");
    return Task.CompletedTask;
});

await bus.PublishAsync(new MoongateStartedEvent());

SubscribeAll registers a handler invoked for every published event, independent of type — dispatched after that event's own typed subscribers, in subscription order. Each catch-all subscription is independent and returns its own disposable token, exactly like Subscribe<TEvent>; disposing one never affects another.

Dependencies and scope

This package depends on Moongate.Core, Moongate.Network, and Moongate.Network.Packets. DryIoc is available through the dependency graph.

The executable host and implementations of server runtime services are provided by Moongate.Server, which is not distributed as part of this library package. Referencing this package does not start the host, listener, timers, or game loop.

Connections and game coordination

IConnectionService tracks transport connections independently of game sessions. Its TryGet returns only live connections whose admission is still open. DisconnectAsync closes admission immediately and joins both the close request and actual transport completion. Closing connections remain in Count and membership snapshots until cleanup finishes. Stop is terminal and reports cleanup failures. The three-argument TryGet overload also captures an owner-requested disconnect signal atomically with the connection; the sender uses that stable signal to classify intentionally interrupted writes. Remote closure or a send failure that closes its own transport does not complete it.

INetworkService owns listeners and raises synchronous ConnectionAccepted, DataReceived, and ConnectionClosed events. Receive memory is borrowed until the callback returns: decode or copy it before posting work elsewhere. A close notification precedes full transport cleanup; never synchronously wait for that cleanup in the callback. NetworkListenerOptions supplies endpoints and an optional per-connection pipeline factory.

IGameServerService coordinates game sessions and packet dispatch above that boundary. IPacketSendService sends through the connection registry without requiring a game session. The executable host provides these implementations and their startup order.

Compatibility

Since 0.2.0, sessions hold an INetworkConnection instead of a MoongateTcpClient; consumers and plugins built against 0.1.x must be rebuilt. See Transport and game ownership for the composition sample, the shutdown sequence and the upgrade notes.

Runtime guides

See packets and handlers, game loop and timers and world saves for registration, threading, completion and shutdown examples.

License and source

Licensed under AGPL-3.0-or-later. See the source repository and license.

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 (1)

Showing the top 1 NuGet packages that depend on Moongate.Server.Core:

Package Downloads
Moongate.Scripting

Embedded Lua scripting for Moongate: attribute-bound modules, loop-affine execution, timer-driven coroutines, and editor definitions.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.7.0 37 9/24/2026
0.6.0 89 9/21/2026
0.5.0 96 9/20/2026
0.4.1 91 9/20/2026
0.4.0 94 9/19/2026
0.3.0 81 9/18/2026