Resonite.GameLibs 2026.4.29.1384

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

Resonite.GameLibs

Stripped reference assemblies for the Resonite platform.

Features

  • Reference assemblies stripped of implementation details
  • Non-publicized assemblies for internal API access
  • Elements.Quantity built from a patched fork to remove the unused ExtensionAttribute class that causes warnings (PR)
  • Includes PDB files for debugging support
  • Includes XML documentation files
  • Automatically generated and updated via GitHub Actions

Version Information

This package is automatically updated to match the latest Resonite platform version.

Version Numbering

The package version follows Resonite's version with an additional patch digit for package-specific updates:

  • Resonite version: 2025.9.23.1237
  • Package version: 2025.9.23.12371 or 2025.9.23.123711

The last 1-2 digits are reserved for patches to this package. Since the package is generated automatically, adjustments may be needed for issues like:

  • Fixing packaging errors
  • Updating exclude patterns
  • Addressing assembly reference issues
  • Other package-specific corrections

This allows us to release fixes without waiting for a new Resonite update.

Usage

Add this package to your project to reference Resonite assemblies without requiring the full game installation.

For best IDE experience, configure your project to prefer local references when available (for better decompilation support) and fall back to this package otherwise:

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    ...
    <GamePath Condition="'$(ResonitePath)' != ''">$(ResonitePath)/</GamePath>
    <GamePath Condition="Exists('$(MSBuildProgramFiles32)\Steam\steamapps\common\Resonite\')">$(MSBuildProgramFiles32)\Steam\steamapps\common\Resonite\</GamePath>
    <GamePath Condition="Exists('$(HOME)/.steam/steam/steamapps/common/Resonite/')">$(HOME)/.steam/steam/steamapps/common/Resonite/</GamePath>
  </PropertyGroup>

  
  <ItemGroup>
    ...
  </ItemGroup>

  
  <ItemGroup Condition="!Exists('$(GamePath)')">
    <PackageReference Include="Resonite.GameLibs" Version="2025.*" />
  </ItemGroup>

  
  <ItemGroup Condition="Exists('$(GamePath)')">
    <Reference Include="FrooxEngine">
      <HintPath>$(GamePath)FrooxEngine.dll</HintPath>
      <Private>False</Private>
    </Reference>
    <Reference Include="Elements.Core">
      <HintPath>$(GamePath)Elements.Core.dll</HintPath>
      <Private>False</Private>
    </Reference>
    <Reference Include="Renderite.Shared">
      <HintPath>$(GamePath)Renderite.Shared.dll</HintPath>
      <Private>False</Private>
    </Reference>
  </ItemGroup>
</Project>
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.

This package has 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
2026.4.29.1384 85 4/29/2026
2026.4.23.1269 89 4/23/2026
2026.4.23.62 106 4/23/2026
2026.4.21.1411 93 4/21/2026
2026.4.20.1323 93 4/20/2026
2026.4.20.1290 85 4/20/2026
2026.4.16.1327 120 4/16/2026
2026.4.14.1205 94 4/14/2026
2026.4.9.1303 100 4/9/2026
2026.4.7.1208 89 4/7/2026
2026.4.1.11 107 4/1/2026
2026.3.25.1356 101 3/25/2026
2026.3.23.1426 96 3/24/2026
2026.3.11.1400 109 3/11/2026
2026.3.5.946 94 3/5/2026
2026.3.3.1232 95 3/3/2026
2026.3.1.792 96 3/1/2026
2026.2.19.620 98 2/20/2026
2026.2.12.359 103 2/13/2026
2026.1.28.1247 153 1/28/2026
Loading failed