StellarAdmin.Core 0.4.0

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

StellarAdmin Tag Helpers

<div align="center"> <img src="assets/logo/stellar-admin-logo.svg"> </div>

StellarAdmin Tag Helpers is a collection of beautifully designed components based on shadcn/ui which you can use to create CRUD screens in ASP.NET Core MVC and Razor Pages applications.

<div align="center">

MIT License NuGet

</div>

Quick start

1. Install package

Install the StellarAdmin.TagHelpers NuGet package:

dotnet add package StellarAdmin.TagHelpers

2. Register services

Update your Program.cs (or Startup.cs) to register the StellarAdmin services.

using StellarAdmin;
using StellarAdmin.TagHelpers;

builder.Services.AddStellarAdmin().AddTagHelpers();

3. Update imports

Update your _ViewImports.cshtml to register the StellarAdmin Tag Helpers and import the StellarAdmin.TagHelpers namespace.

@using StellarAdmin.TagHelpers
@addTagHelper *, StellarAdmin.TagHelpers

You must add the stylesheet for the theme you want to use, as well as the StellarAdmin JavaScript file to your Razor page. The example below demonstrates how to include the script and the stylesheet for the Observatory theme.

<!DOCTYPE html>
<html lang="en">
<head>
    ...
    <link rel="stylesheet" href="/_content/StellarAdmin.TagHelpers/stellar-admin.observatory.css" asp-append-version="true"/>
    <script defer src="/_content/StellarAdmin.TagHelpers/stellar-admin.js" asp-append-version="true"></script>
</head>
<body>
    ...
</body>
</html>

You can find more information and see the available themes on the Theming page.

5. Start using the Tag Helpers

Start using the StellarAdmin Tag Helpers inside your Razor Pages or MVC Views. For example, the code snippet below adds an alert to your page.

<sa-alert>
    <sa-alert-title>Success! You have configured StellarAdmin correctly.</sa-alert-title>
</sa-alert>

Documentation

Documentation and code examples for all the Tag Helpers can be found online.

Using StellarAdmin with AI agents

The StellarAdmin Tag Helpers skill teaches agents how to build MVC and Razor Pages UIs in .cshtml files, with component references and workflows for forms, layout, and theming. Its supporting documentation is bundled under skills/stellar-admin-tag-helpers/references/. Dashboard guidance is planned separately; see the consumer skills overview.

From your application's project directory, install the skill with Vercel's skills CLI:

npx skills add stellar-admin/stellar-admin --skill stellar-admin-tag-helpers

The skill is maintained alongside StellarAdmin; its references may include changes newer than your installed NuGet package. See installation and compatibility for prerequisites, agent selection, and local-checkout installation.

StellarAdmin.Core supplies the shared AddStellarAdmin() entry point, builder, and icon services in StellarAdmin.Icons. It is installed transitively with TagHelpers or Dashboard; no separate installation is needed.

Resource and admin packages

This repository also contains StellarAdmin.Dashboard (admin shell and resource screens), StellarAdmin.Dashboard.Identity (Identity management), and StellarAdmin.Dashboard.EntityFrameworkCore (EF Core resources). All are MIT licensed. Register the integrated admin application with AddStellarAdmin().AddDashboard(). There is no paid tier. These packages are available from source; their NuGet publication is a separate release step.

The full solution includes a unified docs/DocsSamples app, the website demo exporter, and the Identity playground used by the resource integration tests.

Contributing

Start with contributor guidance and development and verification. This checkout includes the development skills, maintained designs, and plans; no workspace checkout is required. The public website remains a separate repository.

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

Showing the top 1 NuGet packages that depend on StellarAdmin.Core:

Package Downloads
StellarAdmin.TagHelpers

A collection of beautifully designed components you can use to create CRUD screens in ASP.NET Core MVC and Razor Pages applications

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.4.0 38 9/18/2026
0.3.0 46 9/17/2026