WebScene.Sdk.Uno 1.0.34

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

WebScene.Sdk.Uno

Subscribe to host.View.JavaScriptException and host.View.RuntimeFailed before mounting to log page-initiated failures. Console capture remains optional via host.View.ConsoleMessage. See Runtime diagnostics for production logging, callback threading and opt-in failure UI.

WebSceneComponentHost is the reusable native Uno Platform host for WebScene Component Profile 1 packages. It validates the package, runs compatibility preflight, isolates declared assets behind a per-instance virtual origin, installs the capability-gated host bridge, and owns mount/unmount/reload.

<Page xmlns:ws="using:WebScene.Sdk.Uno">
  <ws:WebSceneComponentHost
      x:Name="ComponentHost"
      PackagePath="components/ComponentHost.Basic"
      NativeLibraryPath="/absolute/path/to/libwebscene_native_engine.dylib" />
</Page>

Register application services before mounting:

ComponentHost.RegisterHostCapability(
    new WebSceneDelegateCapabilityHandler(
        WebSceneComponentCapabilities.Commands,
        (method, arguments, cancellationToken) => HandleCommandAsync(
            method, arguments, cancellationToken)));

await ComponentHost.MountAsync();

AutoMount defaults to true and follows the Uno control's loaded lifetime. Use AutoMount="False" for explicit lifecycle control. StateChanged, ComponentMounted, ComponentUnmounted, MountFailed, DiagnosticReported, Diagnostics, and LastException provide host-level observability. The underlying UnoNativeWebSceneView remains available through View for generated interop, performance snapshots, and V8 Inspector sessions.

The Uno host requires an Uno Skia desktop target. The native engine path may also be supplied through WEBSCENE_NATIVE_ENGINE_LIBRARY or by deploying its platform library beside the application.

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

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
1.0.34 46 9/9/2026
1.0.33 91 9/4/2026
1.0.32 96 9/3/2026
1.0.31 88 9/3/2026
1.0.30 99 9/1/2026
1.0.27 95 8/31/2026
1.0.26 102 8/28/2026
1.0.25 95 8/28/2026
1.0.23 109 8/24/2026
1.0.22 100 8/23/2026
1.0.21 98 8/22/2026

Adds generated ABI 3 codecs for external models, improves cross-platform web-font decoding, caches system-font probes and text shaping, and reduces CSS-variable resize recalculation while preserving dimension inheritance. Fixes detached DOM cleanup after memory-pressure collection and includes cross-platform runtime fixes.