UciEngine 2.6.0

dotnet add package UciEngine --version 2.6.0
NuGet\Install-Package UciEngine -Version 2.6.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="UciEngine" Version="2.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UciEngine --version 2.6.0
#r "nuget: UciEngine, 2.6.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.
// Install UciEngine as a Cake Addin
#addin nuget:?package=UciEngine&version=2.6.0

// Install UciEngine as a Cake Tool
#tool nuget:?package=UciEngine&version=2.6.0

Introduction

C# dotnet 8.0 Communication via Process class in C# with UCI chess engine UCI chess engine using UCI protocol https://www.wbec-ridderkerk.nl/html/UCIProtocol.html

Getting started

Prerequisites

dotnet 8.0

Installation

You can install it with the Package Manager in your IDE or alternatively using the command line:

dotnet add package UciEngine

Usage

Uci.UciEngine engine = new Uci.UciEngine(path);
engine.OutputDataReceived += OutputDataReceived;
engine.SendCommand(UciCommand.IsReady);
engine.SetOption("Threads", "4");
engine.SetOption("MultiPV", "4");
engine.SendCommand(UciCommand.UciNewGame);
foreach (KeyValuePair<string, string> kv in engine.Options) 
{
   Console.WriteLine($"option name: {kv.Key} value: {kv.Value}");
}
engine.Dispose();

public void OutputDataReceived(object sender, DataReceivedEventArgs e) { response = e.Data; }

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.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
2.6.0 104 3/27/2024
2.5.0 194 10/24/2023
2.4.0 92 10/23/2023
2.3.0 105 10/22/2023
2.1.0 90 10/16/2023
2.0.0 97 10/10/2023
1.0.0 120 8/21/2023