Blazorise.Tests.bUnit
2.0.3
Prefix Reserved
See the version list below for details.
dotnet add package Blazorise.Tests.bUnit --version 2.0.3
NuGet\Install-Package Blazorise.Tests.bUnit -Version 2.0.3
<PackageReference Include="Blazorise.Tests.bUnit" Version="2.0.3" />
<PackageVersion Include="Blazorise.Tests.bUnit" Version="2.0.3" />
<PackageReference Include="Blazorise.Tests.bUnit" />
paket add Blazorise.Tests.bUnit --version 2.0.3
#r "nuget: Blazorise.Tests.bUnit, 2.0.3"
#:package Blazorise.Tests.bUnit@2.0.3
#addin nuget:?package=Blazorise.Tests.bUnit&version=2.0.3
#tool nuget:?package=Blazorise.Tests.bUnit&version=2.0.3

Blazorise: Blazor UI Components for .NET
Blazorise is a source-available Blazor UI component library for building modern .NET web applications in C#. It provides a consistent, strongly-typed component API across popular CSS frameworks, allowing you to build with Bootstrap 5, Tailwind CSS, Bulma, Material, AntDesign, or Fluent UI 2 without rewriting your application.
Highlights
- Provider-agnostic components with multiple CSS framework providers.
- C#-first development with a consistent API across providers.
- Works in Blazor WebAssembly and Blazor Server apps.
- Optional commercial themes, blocks, and priority support.
Commercial licensing
Blazorise is dual-licensed. Use is governed by the terms in LICENSE.md or a commercial license, depending on your scenario. For teams that need premium assets and support, commercial subscriptions are available.
Commercial subscriptions include:
- Access to Blazorise Themes.
- Access to Blazorise Blocks.
- Premium support via Blazorise Support forum.
- Dedicated customer support with response times of either 24 or 16 hours, depending on plan.
- Priority fixes and feature requests.
* Some features may be exclusive to specific subscription tiers.
Supporting Blazorise
Blazorise is a source-available project, and its ongoing development is made possible through the support of its partners, subscribers, and community contributors.
Special Partners
<table> <tbody> <tr> <td align="center" valign="middle"> <a href="https://volosoft.com/" target="_blank"> <img width="222px" src="https://volosoft.com/assets/logos/volosoft-logo-dark.svg"> </a> </td> <td align="center" valign="middle"> <a href="https://www.pebble.tv/" target="_blank"> <img width="222px" src="https://www.pebble.tv/wp-content/uploads/2020/10/logo.svg"> </a> </td> </tr> <tr></tr> </tbody> </table>
Demos
Blazor WebAssembly
- Tailwind Demo
- Bootstrap 4 Demo
- Bootstrap 5 Demo
- Material Demo
- Bulma Demo
- AntDesign Demo
- Fluent 2 Demo
Blazor Server
Documentation
For full documentation, component API references, and detailed guides, visit the Blazorise official documentation pages.
Continue reading below for a quick start guide.
Installation
Prerequisites
Before you continue, make sure you have a recent .NET SDK and a supported IDE (Visual Studio or VS Code). Visit the official Blazor site to learn more.
Provider packages
There are currently 7 provider packages, one per supported CSS framework.
Available Blazorise packages are:
- Blazorise.Tailwind
- Blazorise.Bootstrap
- Blazorise.Bootstrap5
- Blazorise.Bulma
- Blazorise.Material
- Blazorise.AntDesign
- Blazorise.FluentUI2
This guide shows how to set up Blazorise with Bootstrap 5 and FontAwesome 6 icons. To set up Blazorise for other CSS frameworks, refer to the Usage page in the documentation.
1. NuGet packages
Install a provider package and any icon package you want to use. Example for Bootstrap 5 and FontAwesome:
dotnet add package Blazorise.Bootstrap5
And FontAwesome icon package:
dotnet add package Blazorise.Icons.FontAwesome
2. Source files
Add the following to index.html (Blazor WebAssembly), _Host.cshtml (Blazor Server), or App.razor (.NET 8+ Blazor Web App) in the head section.
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="_content/Blazorise.Icons.FontAwesome/v6/css/all.min.css" rel="stylesheet">
<link href="_content/Blazorise/blazorise.css?v=2.0.3.0" rel="stylesheet" />
<link href="_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css?v=2.0.3.0" rel="stylesheet" />
The ?v=2.0.3.0 query string matches the current Blazorise package version (2.0.3) and is used for cache busting. Update it whenever you upgrade Blazorise packages. If you use a different provider, swap the Bootstrap CSS and provider-specific Blazorise CSS file accordingly.
2.1 JavaScript resources
Blazorise loads any additional JavaScript it needs dynamically once a component needs it. Make sure the resources are available and served relative to the app root. For Blazor Server, enable static files with app.UseStaticFiles();.
If you're having any difficulties, please refer to the following issues:
We are also aware that there might need to be extra setup when dealing with PWA and offline capabilities if you want your app to remain responsive. Please check our PWA docs for more information.