Resonite.GameLibs 2026.7.14.913

dotnet add package Resonite.GameLibs --version 2026.7.14.913
                    
NuGet\Install-Package Resonite.GameLibs -Version 2026.7.14.913
                    
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.7.14.913" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Resonite.GameLibs" Version="2026.7.14.913" />
                    
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.7.14.913
                    
#r "nuget: Resonite.GameLibs, 2026.7.14.913"
                    
#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.7.14.913
                    
#: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.7.14.913
                    
Install as a Cake Addin
#tool nuget:?package=Resonite.GameLibs&version=2026.7.14.913
                    
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
  • 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.7.14.913 121 7/14/2026
2026.7.13.1300 96 7/13/2026
2026.7.7.8291 222 7/7/2026
2026.7.7.829 103 7/7/2026
2026.6.24.835 128 6/24/2026
2026.6.19.835 110 6/19/2026
2026.6.18.634 126 6/18/2026
2026.6.12.557 111 6/12/2026
2026.6.4.1252 106 6/4/2026
2026.6.2.275 107 6/2/2026
2026.6.1.1293 111 6/1/2026
2026.5.28.1269 127 5/28/2026
2026.5.27.1300 126 5/27/2026
2026.5.20.291 125 5/20/2026
2026.5.19.1285 104 5/19/2026
2026.5.11.1342 128 5/11/2026
2026.4.29.1384 106 4/29/2026
2026.4.23.1269 118 4/23/2026
2026.4.23.62 125 4/23/2026
2026.4.21.1411 110 4/21/2026
Loading failed