Stimpak 0.1.0-preview.1

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

Stimpak

Stimpak is a .NET client for StarCraft II Battle.net chat.

Install

dotnet add package Stimpak

Add Stimpak.Auth for the optional in-process authentication UI.

dotnet add package Stimpak.Auth

Example

using Stimpak;

using var client = new StimpakClient("com.example.MyBot");
client.Connect();

await foreach (var next in client.ReadEventsAsync())
{
    client.People.Apply(next);

    if (next is MessageReceived { Body: "!ping" } message)
        client.SendMessage(message.ChannelIndex, "pong");
}

A new account emits AuthenticationRequired. Complete it with SubmitAuth, or use Stimpak.Auth from a UI application.

Event reference: EVENTS.md.

C header: include/stimpak.h.

Development

cargo test --release -p stimpak -p stimpak-auth
dotnet run --project stimpak/csharp/Stimpak.Tests/Stimpak.Tests.csproj -c Release
dotnet build stimpak/csharp/ExampleBot/ExampleBot.csproj -c Release
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Stimpak:

Package Downloads
Stimpak.Auth

Optional in-process Battle.net authentication UI for Stimpak.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-preview.1 92 8/23/2026