TickerQ.Dashboard 10.1.1

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

TickerQ Dashboard Authentication

Simple, clean authentication for your TickerQ Dashboard.

🚀 Quick Examples

No Authentication (Public Dashboard)

services.AddTickerQ<MyTimeTicker, MyCronTicker>(config =>
{
    config.AddDashboard(dashboard =>
    {
        // No authentication setup = public dashboard
    });
});

Basic Authentication

services.AddTickerQ<MyTimeTicker, MyCronTicker>(config =>
{
    config.AddDashboard(dashboard =>
    {
        dashboard.WithBasicAuth("admin", "secret123");
    });
});

API Key Authentication

services.AddTickerQ<MyTimeTicker, MyCronTicker>(config =>
{
    config.AddDashboard(dashboard =>
    {
        dashboard.WithApiKey("my-secret-api-key-12345");
    });
});

Use Host Application's Authentication

services.AddTickerQ<MyTimeTicker, MyCronTicker>(config =>
{
    config.AddDashboard(dashboard =>
    {
        dashboard.WithHostAuthentication();
    });
});

Use Host Authentication with Custom Policy

services.AddTickerQ<MyTimeTicker, MyCronTicker>(config =>
{
    config.AddDashboard(dashboard =>
    {
        dashboard.WithHostAuthentication("AdminPolicy");
    });
});

🔧 Fluent API Methods

  • WithBasicAuth(username, password) - Enable username/password authentication
  • WithApiKey(apiKey) - Enable API key authentication
  • WithHostAuthentication(policy) - Use your app's existing auth with optional policy (e.g., "AdminPolicy")
  • SetBasePath(path) - Set dashboard URL path
  • SetBackendDomain(domain) - Set backend API domain
  • SetCorsPolicy(policy) - Configure CORS

🔒 How It Works

The dashboard automatically detects your authentication method:

  1. No auth configured → Public dashboard
  2. Basic auth configured → Username/password login
  3. Bearer token configured → API key authentication
  4. Host auth configured → Delegates to your app's auth system

🌐 Frontend Integration

The frontend automatically adapts based on your backend configuration:

  • Shows appropriate login UI
  • Handles SignalR authentication
  • Supports both header and query parameter auth (for WebSockets)

That's it! Simple and clean. 🎉

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 (1)

Showing the top 1 popular GitHub repositories that depend on TickerQ.Dashboard:

Repository Stars
foxminchan/BookWorm
The practical implementation of Aspire using Microservices, AI-Agents
Version Downloads Last Updated
10.1.1 921 2/10/2026
10.1.0 232 2/9/2026
10.1.0-beta 78 2/9/2026
10.0.5.2-beta 75 2/9/2026
10.0.5.1-beta 80 2/9/2026
10.0.5-beta 78 2/9/2026
10.0.4-beta 78 2/9/2026
10.0.3-beta 99 2/5/2026
10.0.2 21,883 12/10/2025
10.0.1 6,469 11/27/2025
9.1.1 222 2/10/2026
9.1.0 109 2/9/2026
9.1.0-beta 80 2/9/2026
9.0.2 5,405 12/10/2025
9.0.1 3,515 11/27/2025
8.1.1 90 2/10/2026
8.1.0 133 2/9/2026
8.1.0-beta 81 2/9/2026
8.0.2 3,493 12/10/2025
8.0.1 1,062 11/27/2025
Loading failed