GoesSoftware.SuperSDK.GermNet 7.23.7

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

SuperSDK.GermNet

GermNet is a LAN/Cloud communication library for SuperSDK with built-in AES-256 encryption, automatic server discovery, and a polymorphic message system.

Features

  • GzLocalServer — LAN server with UDP broadcast auto-discovery
  • GzNetServer — Cloud server with GzRegistry-based discovery
  • GzRegistry — Self-hosted registry bridge for NetServer discovery
  • GzClient — Client with LAN listening + Registry polling
  • AES-256-GCM — All messages encrypted transparently
  • Polymorphic Messages — Add a subclass of GermMessage to add a new message type

Quick Start

// Server (LAN)
var server = new GzLocalServer("MyStation", tcpPort: 45700);
server.On<GermTextMessage>((clientId, msg) => Console.WriteLine(msg.Text));
server.OnStateChanged += state => Console.WriteLine(state.Type);
server.Start();

// Client
var client = new GzClient();
client.Start();
var servers = await client.DiscoverLocalAsync(TimeSpan.FromSeconds(3));
var conn = await client.ConnectAsync(servers[0]);
await conn.SendAsync(new GermTextMessage { Text = "Hello!" });

// Custom message type
public class SensorMessage : GermMessage
{
    public double Temperature { get; set; }
    public double Humidity { get; set; }
}
// Register if in a different assembly
GermMessage.Register<SensorMessage>();
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.

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
7.23.7 36 5/22/2026
7.23.6 33 5/22/2026
7.23.5 94 5/13/2026
7.23.4 93 5/13/2026
7.23.3 93 5/13/2026
7.23.2 91 5/13/2026
7.23.1 91 5/12/2026
7.23.0 94 5/12/2026
7.21.0 95 5/12/2026
7.20.0 100 5/12/2026
7.19.1 101 5/11/2026
7.19.0 90 5/11/2026
7.18.0 94 4/30/2026
7.17.0 95 4/29/2026

docs(gotest-agent): add Profile file naming rule to engineer prompt