Lucid.Rtc 0.1.4

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

Lucid.Rtc

WebRTC bindings for .NET with native P2P communication support.

Installation

<PackageReference Include="Lucid.Rtc" Version="0.1.0" />

This includes everything you need - managed library and native runtimes for all platforms.

For advanced users

If you want to minimize package size, install only the packages you need:


<PackageReference Include="Lucid.Rtc.Core" Version="0.1.0" />


<PackageReference Include="Lucid.Rtc.Native.win-x64" Version="0.1.0" />

Available Packages

Package Description Size
Lucid.Rtc Metapackage - Everything included ~200 MB
Lucid.Rtc.Core Managed library only ~50 KB
Lucid.Rtc.Native.All All native runtimes ~200 MB
Lucid.Rtc.Native.win-x64 Windows x64 ~20 MB
Lucid.Rtc.Native.win-arm64 Windows ARM64 ~20 MB
Lucid.Rtc.Native.win-x86 Windows x86 ~20 MB
Lucid.Rtc.Native.linux-x64 Linux x64 ~20 MB
Lucid.Rtc.Native.linux-arm64 Linux ARM64 ~20 MB
Lucid.Rtc.Native.linux-arm Linux ARM (32-bit) ~20 MB
Lucid.Rtc.Native.osx-x64 macOS Intel ~20 MB
Lucid.Rtc.Native.osx-arm64 macOS Apple Silicon ~20 MB

Quick Start

using Lucid.Rtc;

var config = new RtcConfig
{
    StunServers = new[] { "stun:stun.l.google.com:19302" }
};

using var client = new RtcClient(config);

// Create offer
var offer = client.CreateOffer("peer1");
Console.WriteLine($"Offer: {offer}");

// Handle events
client.EventReceived += (sender, evt) =>
{
    Console.WriteLine($"Event: {evt.Type}");
};

License

MIT

There are no supported framework assets in this 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
0.1.4 125 2/26/2026
0.1.3 104 2/25/2026
0.1.0 101 2/25/2026