IgniteUI.Blazor.Trial 25.2.32

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

Getting Started with Ignite UI for Blazor WebAssembly

This topic provides step-by-step instructions for creating Blazor WebAssembly applications with Ignite UI for Blazor using Visual Studio.

Create a New Blazor WebAssembly Project

The steps below describe how to create a new Blazor WebAssembly project. If you want to add Ignite UI for Blazor to an existing application, go to the Install Ignite UI for Blazor Package section.

Start Visual Studio 2022 and click Create a new project on the start page, select the Blazor WebAssembly App template, and click Next.

Provide a project name and location, and click Next

Specify additional project options, and click Create

Install Ignite UI for Blazor

Ignite UI for Blazor is delivered via NuGet packages. To use the Ignite UI for Blazor components in your Blazor applications, you must first install the appropriate NuGet packages.

In Visual Studio, open the NuGet package manager by selecting ToolsNuGet Package ManagerManage NuGet Packages for Solution. Search for and install the IgniteUI.Blazor NuGet package.

For more information on installing Ignite UI for Blazor using NuGet, read the Installing Ignite UI for Blazor topic.

Register Ignite UI for Blazor

1 - Open the Program.cs file and register the Ignite UI for Blazor Service by calling builder.Services.AddIgniteUIBlazor():

var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");

builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });

builder.Services.AddIgniteUIBlazor();

await builder.Build().RunAsync();

2 - Add the IgniteUI.Blazor.Controls namespace in the _Imports.razor file:

@using IgniteUI.Blazor.Controls

3 - Add the Style Sheet in the <head> element of the wwwroot/index.html file:

<head>
    <link href="_content/IgniteUI.Blazor/themes/light/bootstrap.css" rel="stylesheet" />
</head>

4 - Add Script Reference to the wwwroot/index.html file:

<script src="_content/IgniteUI.Blazor/app.bundle.js"></script>
<script src="_framework/blazor.webassembly.js"></script>

Add Ignite UI for Blazor Component

Add an Ignite UI for Blazor component to your razor page:

<IgbCard style="width:350px">
    <IgbCardMedia>
        <img src="https://images.unsplash.com/photo-1541516160071-4bb0c5af65ba?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=350&q=80" />
    </IgbCardMedia>
    <IgbCardHeader>
        <h4>Jane Doe</h4>
        <h6>Professional Photographer</h6>
    </IgbCardHeader>
    <IgbCardContent>Hi! I'm Jane, photographer and filmmaker.
        Photography is a way of feeling, of touching,
        of loving. What you have caught on film is captured forever...
        it remembers little things, long after you have
        forgotten everything.</IgbCardContent>
    <IgbCardActions>
        <IgbButton>More Info</IgbButton>
    </IgbCardActions>
</IgbCard>

Build and run the Blazor app.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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 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
25.2.32 501 12/1/2025
25.1.82 318 9/30/2025
25.1.63 276 8/21/2025
25.1.46 598 7/24/2025
25.1.19 326 6/5/2025
24.2.122 417 5/16/2025
24.2.111 428 4/10/2025
24.2.92 486 3/6/2025
24.2.85 365 2/28/2025
24.2.71 648 1/27/2025
24.2.52 373 12/18/2024
24.2.49 251 12/17/2024
24.2.42 262 12/11/2024
24.2.26 600 11/25/2024
24.2.19 297 11/15/2024
24.1.67 602 10/11/2024
24.1.52 432 9/20/2024
24.1.46 345 9/11/2024
23.2.257 1,113 6/28/2024
23.2.204 688 4/18/2024
23.2.191 437 3/29/2024
23.2.189 366 3/27/2024
23.2.120 17,555 1/17/2024
23.2.110 819 1/9/2024
23.2.97 1,387 12/14/2023
23.2.81 974 11/22/2023
23.2.76 895 11/15/2023
23.2.61 968 11/10/2023
23.1.72 3,478 8/17/2023
23.1.60 1,827 7/28/2023
23.1.37 2,906 6/27/2023
22.2.65 3,258 3/28/2023
22.2.60 1,391 3/22/2023
22.2.52 2,547 1/9/2023
22.2.50 1,698 12/9/2022
22.2.36 1,590 11/16/2022