ChessDotNetCore 1.3.0

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

// Install ChessDotNetCore as a Cake Tool
#tool nuget:?package=ChessDotNetCore&version=1.3.0

Introduction

C# dotnet 8 chess library with SAN and FEN parsing/generation, moves validation, PGN filter, import an save games in PGN format, read any Polyglot openings book and build your Polyglot openings book and much more!

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 ChessDotNetCore

Usage

string initialBoard = "8/8/3k4/8/8/4K3/8/Q6R w - - 0 1";
ChessGame game = new ChessGame(initialBoard);
game.MakeMove(new Move("f8", "a3", Player.Black), true);
string San = game.AllMoves[0].SAN;
string Fen = game.GetFen();
var GameResult = game.GameResult
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.

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
1.3.0 102 3/22/2024
1.2.0 178 1/23/2024
1.1.0 183 1/17/2024
1.0.0 171 1/16/2024