LibreMetaverse.LslTools 2.5.7.90

Prefix Reserved
dotnet add package LibreMetaverse.LslTools --version 2.5.7.90
                    
NuGet\Install-Package LibreMetaverse.LslTools -Version 2.5.7.90
                    
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="LibreMetaverse.LslTools" Version="2.5.7.90" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LibreMetaverse.LslTools" Version="2.5.7.90" />
                    
Directory.Packages.props
<PackageReference Include="LibreMetaverse.LslTools" />
                    
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 LibreMetaverse.LslTools --version 2.5.7.90
                    
#r "nuget: LibreMetaverse.LslTools, 2.5.7.90"
                    
#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 LibreMetaverse.LslTools@2.5.7.90
                    
#: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=LibreMetaverse.LslTools&version=2.5.7.90
                    
Install as a Cake Addin
#tool nuget:?package=LibreMetaverse.LslTools&version=2.5.7.90
                    
Install as a Cake Tool
▗▖   ▄ ▗▖    ▄▄▄ ▗▞▀▚▖▗▖  ▗▖▗▞▀▚▖   ■  ▗▞▀▜▌▄   ▄ ▗▞▀▚▖ ▄▄▄ ▄▄▄ ▗▞▀▚▖
▐▌   ▄ ▐▌   █    ▐▛▀▀▘▐▛▚▞▜▌▐▛▀▀▘▗▄▟▙▄▖▝▚▄▟▌█   █ ▐▛▀▀▘█   ▀▄▄  ▐▛▀▀▘
▐▌   █ ▐▛▀▚▖█    ▝▚▄▄▖▐▌  ▐▌▝▚▄▄▖  ▐▌        ▀▄▀  ▝▚▄▄▖█   ▄▄▄▀ ▝▚▄▄▖
▐▙▄▄▖█ ▐▙▄▞▘          ▐▌  ▐▌       ▐▌                                
                                   ▐▌                                

LibreMetaverse

LibreMetaverse is a fork of libOpenMetaverse which in turn was a fork of libSecondLife, a library for developing Second Life-compatible virtual world clients. LibreMetaverse returns the focus to up-to-date Second Life and OpenSim compatibility with an eye to performance, multi-threading, and memory management.

The canonical source for LibreMetaverse can be found at: https://github.com/cinderblocks/libremetaverse

Requirements

  • .NET SDK 8.0 or 9.0 installed (recommended). Older .NET SDKs may build some projects but are not tested.
  • dotnet CLI available on PATH. Verify with:
dotnet --info
  • On Windows you can use Visual Studio (2022/2023) with .NET workloads installed. On Linux/macOS use the official .NET SDK installers.

From repository root:

  1. Restore packages:
# Restore packages for the solution
# Example: dotnet restore LibreMetaverse.sln
# Or restore and build directly from the root directory:

dotnet restore
  1. Build the solution (Release):
# Build the entire repo (builds discovered projects)
# Recommended: use 'dotnet build' which runs source generators automatically

dotnet build -c Release

This builds projects for their configured target frameworks (net8.0/net9.0/netstandard2.0, etc.). If you need to force a single framework for a specific project use -f on the dotnet build command for that project.

Notes:

  • Some sample programs and tests target Windows-only frameworks (e.g. .NET Framework) and will produce warnings or errors on non-Windows hosts. You can ignore those when building cross-platform.
  • If you prefer MSBuild directly, be aware: some projects include custom source generators under the SourceGenerators folder. When using MSBuild (or dotnet msbuild) you may need to build/run those generator projects manually before building the consumer projects. Using dotnet build is recommended because it will execute source generators as part of the normal build flow when configured correctly.

If you still want to run MSBuild directly:

# Build generator projects first (example):
# dotnet build SourceGenerators/PacketSourceGenerator/PacketSourceGenerator.csproj -c Release
# dotnet build SourceGenerators/VisualParamGenerator/VisualParamGenerator.csproj -c Release

# Then run msbuild on the solution (adjust solution filename as needed):
# dotnet msbuild LibreMetaverse.sln -t:Build -p:Configuration=Release

Building specific projects

To build an individual project (example TestClient):

dotnet build Programs/examples/TestClient/TestClient.csproj -c Release

Outputs for each project are under that project's bin/<Configuration>/<TargetFramework>/ directory (for example LibreMetaverse/bin/Release/net8.0/).

Running examples

Change into the example project's output folder and run with dotnet (or execute the produced executable on platforms that produce a native runnable file):

cd Programs/examples/TestClient/bin/Release/net8.0/
dotnet TestClient.dll    # on platforms that require 'dotnet' to run
# or
./TestClient              # if the project produced a runnable executable on your platform

Visual Studio (Windows)

  • Open the solution file present in the repo root (for example LibreMetaverse.sln) in Visual Studio.
  • Select the desired solution configuration (Debug/Release) and target framework (if applicable) and build.
  • Some solution items target .NET Framework for Windows-only tests/tools — you can unload those projects if you don't need them.

Platform-specific notes

  • Windows

    • Full .NET Framework projects (e.g. net48 test/tools) require Windows and Visual Studio/MSBuild. Use Visual Studio or dotnet msbuild from a Developer Command Prompt.
    • Executables built for Windows can be run directly (./Program.exe) or via dotnet for framework-dependent builds.
    • Some third-party SDKs (voice/Vivox, native clients) may require platform installers or SDKs — consult the specific project folders for details.
  • Linux

    • Use the official .NET SDK packages for your distribution. dotnet build and dotnet run are the recommended workflow.
    • Some projects may reference native libraries or Windows-only APIs; those projects will fail or warn during build and can be ignored if not required.
    • If you use MSBuild directly, ensure source generators are available (see "MSBuild" notes above).
  • macOS

    • Install the official .NET SDK (8.0/9.0). dotnet build / dotnet run are supported similarly to Linux.
    • GUI or Windows-specific projects will not run; use the example CLI apps and libraries that target cross-platform frameworks.
  • CI and cross-platform builds

    • For CI prefer dotnet build and run a matrix across ubuntu-latest, macos-latest, and windows-latest if you need to validate cross-platform compatibility.
    • Exclude or conditionally run Windows-only projects on non-Windows runners.
  • Native dependencies & source generators

    • Some components (voice, WebRTC, Vivox) may depend on native binaries or SDKs. Check the individual project README files for native prerequisites and installation steps.
    • If you choose to use dotnet msbuild directly instead of dotnet build, you may need to build or run the SourceGenerators projects first so generated sources are available to consumer projects.

Tests

Some tests target Windows-only frameworks; run the cross-platform tests using the CLI where applicable. Example (where supported):

dotnet test LibreMetaverse.Tests/LibreMetaverse.Tests.csproj -c Release

Troubleshooting

  • Missing Windows-only assemblies: you may see warnings/errors for projects that rely on Windows-specific APIs on Linux/macOS. These are expected for some example/test projects and can be ignored unless you need those projects.
  • Out-of-date SDK: Ensure the SDK version reported by dotnet --info matches the frameworks you want to build (8.0/9.0).
  • If NuGet restore fails, delete the ~/.nuget/packages cache or run dotnet restore with verbosity to inspect failures.

Contributing

  • See the repository for contribution guidelines. Keep changes small and test builds on your target runtime.

For more project-specific details check the Programs/examples/ folders or the individual project README files.

LibreMetaverse NuGet-Release
BSD Licensed
NuGet Downloads
Build status
Test status
Codacy Badge
Commits per month
ZEC BTC

Contributors

<a href="https://github.com/cinderblocks/libremetaverse/graphs/contributors"> <img src="https://contrib.rocks/image?repo=cinderblocks/libremetaverse" /> </a>

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.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.5.7.90 57 12/21/2025
2.5.6.83 268 12/17/2025
2.5.5.73 422 12/11/2025
2.5.4.49 197 12/5/2025
2.5.3.37 342 11/30/2025
2.5.2.29 125 11/29/2025
2.5.1.7 218 11/22/2025
2.5.0.1064-alpha 100 7/19/2025
2.5.0.1 252 11/22/2025
2.4.19.1193 304 11/13/2025
2.4.18.1184 233 11/10/2025
2.4.17.1172 198 11/6/2025
2.4.16.1154 160 11/2/2025
2.4.15.1150 193 10/27/2025
2.4.14.1143 178 10/26/2025
2.4.13.1131 182 10/20/2025
2.4.12.1124 241 10/16/2025
2.4.11.1120 186 10/16/2025
2.4.10.1108 205 10/9/2025
2.4.9.1102 209 9/22/2025
2.4.8.1099 237 9/7/2025
2.4.7.1093 254 8/28/2025
2.4.6.1084 199 8/18/2025
2.4.5.1070 333 8/5/2025
2.4.4.1068 197 8/3/2025
2.4.3.1065 121 7/19/2025
2.4.2.1063 135 7/18/2025
2.4.1.1061 133 7/18/2025
2.4.0.1059 149 7/18/2025
2.3.5.1051 222 7/13/2025
2.3.4.1032 253 7/1/2025
2.3.3.997 292 6/13/2025
2.3.2.987 393 6/10/2025
2.3.1.973 233 6/3/2025
2.3.0.961 242 5/28/2025
2.2.12.959 225 5/27/2025
2.2.11.954 171 5/23/2025
2.2.10.950 319 5/7/2025
2.2.9.940 255 4/30/2025
2.2.8.932 191 4/27/2025
2.2.7.928 182 4/26/2025
2.2.6.924 295 4/22/2025
2.2.5.921 564 3/26/2025
2.2.4.917 247 2/14/2025
2.2.3.909 202 1/28/2025
2.2.2.904 206 1/25/2025
2.2.1.895 203 1/23/2025
2.2.0.890 219 1/22/2025
2.2.0.730-alpha 138 9/2/2024
2.1.11.859 224 1/19/2025
2.1.10.841 239 1/15/2025
2.1.9.838 189 1/15/2025
2.1.8.824 173 1/14/2025
2.1.7.767 227 1/2/2025
2.1.6.760 230 12/30/2024
2.1.5.753 198 12/29/2024
2.1.5.749 208 12/29/2024
2.1.4.744 219 12/24/2024
2.1.4.742 199 12/24/2024
2.1.3.735 248 11/1/2024
2.1.2.688 266 8/10/2024
2.1.1.671 222 8/8/2024
2.1.0.729-alpha 145 9/2/2024
2.1.0.666 214 8/7/2024
2.1.0.660-alpha 115 8/3/2024
2.1.0.657-alpha 131 8/2/2024
2.1.0.654-alpha 124 8/2/2024
2.1.0.648-alpha 159 7/17/2024
2.1.0.646-alpha 131 7/14/2024
2.0.11.636 218 7/7/2024
2.0.10.575 520 3/12/2023
2.0.9.562 516 2/5/2023
2.0.8.558 383 2/3/2023
2.0.6.545 437 1/19/2023
2.0.5.536 448 12/2/2022
2.0.4.532 442 11/28/2022
2.0.3.521 423 11/16/2022
2.0.2.514 441 11/11/2022
2.0.1.511 456 11/11/2022
2.0.0.497 477 11/5/2022
1.9.20.450 694 3/1/2022
1.9.19.438 593 1/23/2022
1.9.18.429 595 1/12/2022
1.9.17.425 569 1/10/2022
1.9.16.420 415 1/6/2022
1.9.15.410 391 1/5/2022
1.9.12.389 406 1/4/2022
1.9.0.388-alpha 304 1/4/2022