Tesserae 2026.7.68705

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

Build Status

<img src="https://raw.githubusercontent.com/curiosity-ai/tesserae/refs/heads/master/logo.png" width="100" height="100" />

Tesserae

Tesserae is a UI toolkit for building web applications entirely in C#, inspired by Microsoft's Fluent UI toolkit. It leverages the Transpose C# to JavaScript compiler to provide a strongly typed, easy-to-use UI development experience.

๐Ÿ“– Official Documentation: docs.curiosity.ai/tesserae  ยท  ๐ŸŽจ Live Samples: curiosity.ai/tesserae

The documentation site is the recommended starting point for new users and includes guides, API references, and interactive examples for every component.

Getting Started

To create a new, blank Tesserae project from scratch, follow these steps:

  1. Update or install the Transpose compiler:

    dotnet tool update --global Transpose.Compiler
    
  2. Install the Transpose project templates:

    dotnet new install Transpose.Template
    
  3. Create a new Transpose project:

    dotnet new transpose
    
  4. Add the Tesserae package:

    dotnet add package Tesserae
    

Build Process

Tesserae projects are compiled from C# to JavaScript using the Transpose compiler.

tps.json Configuration

The build process is controlled by the tps.json file located in your project root. This file defines:

  • Output Directory: Where the compiled files will be placed (e.g., "output": "$(OutDir)/tps/").
  • Entry Point: The name of the generated JavaScript file (e.g., "fileName": "app.js").
  • HTML Generation: Whether to generate an index.html file and its title.
  • Resources: Additional CSS, images, or JavaScript files to be included in the build output.

Compilation Output

When you build the project (e.g., via dotnet build or in Visual Studio), the Transpose compiler translates your C# code into JavaScript and copies necessary assets to the output folder. By default, these files are located in: bin/Debug/netstandard2.0/tps/ (or bin/Release/... depending on your configuration).

Local Testing

To test your application locally, we recommend using the dotnet-serve tool, which is a simple command-line HTTP server.

  1. Install dotnet-serve:

    dotnet tool install dotnet-serve --global
    
  2. Serve the compiled files: Navigate to the Transpose output directory and start the server:

    cd bin/Debug/netstandard2.0/tps/
    dotnet serve --port 5000
    
  3. View your app: Open your browser and navigate to http://localhost:5000/.

Documentation

For comprehensive guides, API references, and interactive component examples, visit the official documentation:

๐Ÿ“– docs.curiosity.ai/tesserae

Quick links to docs within this repo:

Samples

The Tesserae.Tests project contains numerous examples demonstrating how to use the library components. A live version of these samples is hosted at https://curiosity.ai/tesserae.

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 was computed.  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 was computed.  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.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on Tesserae:

Package Downloads
Mosaik.FrontEnd.Core

Package Description

Mosaik.FrontEnd

Package Description

Mosaik.UI.Core

Package Description

Mosaik.FrontEnd.Topics

Package Description

Mosaik.FrontEnd.Admin

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Tesserae:

Repository Stars
curiosity-ai/h5
C# to JavaScript compiler
Version Downloads Last Updated
2026.7.68705 89 7/29/2026
2026.7.68704 51 7/29/2026
2026.7.68689 79 7/29/2026
2026.7.68685 93 7/28/2026
2026.7.68668 586 7/28/2026
2026.7.68649 82 7/28/2026
2026.7.68648 74 7/28/2026
2026.7.68647 71 7/28/2026
2026.7.68629 87 7/28/2026
2026.7.68622 105 7/27/2026
2026.7.68607 652 7/27/2026
2026.7.68604 203 7/27/2026
2026.7.68568 295 7/26/2026
2026.7.68553 167 7/26/2026
2026.7.68545 280 7/26/2026
2026.7.68543 280 7/26/2026
2026.7.68539 94 7/26/2026
2026.7.68507 537 7/24/2026
2026.7.68502 138 7/24/2026
2026.7.68501 484 7/24/2026
Loading failed