Boist.Windowing 0.1.1

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

Boist.Windowing

A library providing cross-platform window management, built with SDL3. It provides all of the native windowing handles and OpenGL functions necessary to initialize a Boist.Graphics.Renderer (or to use any graphics library you may use!).

It also fires events that can be obtained with Window.PollEvent(out WindowEvent).

This project depends on SDL3-CS, which requires native runtime libraries to function.
To install these libraries, simply install the package for your platform:

Platform Package
Windows SDL3-CS.Windows
macOS SDL3-CS.MacOS
Linux SDL3-CS.Linux

You can also insert this into your .csproj if you're building an application for multiple platforms:

<ItemGroup Condition="$([System.OperatingSystem]::IsWindows())">
  <PackageReference Include="SDL3-CS.Windows" Version="3.4.10.5" />
</ItemGroup>

<ItemGroup Condition="$([System.OperatingSystem]::IsLinux())">
  <PackageReference Include="SDL3-CS.Linux" Version="3.4.10.5" />
</ItemGroup>

<ItemGroup Condition="$([System.OperatingSystem]::IsMacOS())">
  <PackageReference Include="SDL3-CS.MacOS" Version="3.4.10.5" />
</ItemGroup>
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 Boist.Windowing:

Package Downloads
Boist

A suite of cross-platform libraries for building applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.1 54 7/2/2026
0.1.0 49 7/2/2026