All Projects → SamProf → EmbeddedBlazorContent

SamProf / EmbeddedBlazorContent

Licence: MIT license
Library to load embedded content files (js and css) from Blazor libraries in server-side Blazor mode.

Programming Languages

C#
18002 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to EmbeddedBlazorContent

smart-blazor
Blazor UI Components & Examples
Stars: ✭ 32 (-17.95%)
Mutual labels:  asp-net-core, blazor, blazor-server, blazor-component
BlazorVirtualScrolling
Blazor components for efficiently rendering large lists and data using virtual scrolling
Stars: ✭ 56 (+43.59%)
Mutual labels:  blazor, blazor-server, blazor-component
AutoSaveEditForm
A replacement for the default EditForm component which will auto save a form until it is successfully submitted
Stars: ✭ 44 (+12.82%)
Mutual labels:  blazor, blazor-server, blazor-component
MASA.Blazor
Blazor component library based on Material Design. Support Blazor Server and Blazor WebAssembly.
Stars: ✭ 469 (+1102.56%)
Mutual labels:  blazor, blazor-server, blazor-component
BlazorServerWithDocker
Companion code sample for my blog post - Containerising a Blazor Server App
Stars: ✭ 16 (-58.97%)
Mutual labels:  asp-net-core, blazor, blazor-server
Matblazor
Material Design components for Blazor and Razor Components
Stars: ✭ 2,599 (+6564.1%)
Mutual labels:  blazor, blazor-server, blazor-component
FlashCards
Learning Blazor By Creating A Flash Cards Application
Stars: ✭ 17 (-56.41%)
Mutual labels:  asp-net-core, blazor, blazor-server
Awesome Blazor
Resources for Blazor, a .NET web framework using C#/Razor and HTML that runs in the browser with WebAssembly.
Stars: ✭ 6,063 (+15446.15%)
Mutual labels:  asp-net-core, blazor, blazor-component
MudBlazor
Blazor Component Library based on Material design with an emphasis on ease of use. Mainly written in C# with Javascript kept to a bare minimum it empowers .NET developers to easily debug it if needed.
Stars: ✭ 4,539 (+11538.46%)
Mutual labels:  blazor, blazor-server
BlazoredLocalStorage
This library has been moved to the Blazored org
Stars: ✭ 26 (-33.33%)
Mutual labels:  asp-net-core, blazor
NodaTimePicker
A Date/Time picker component library for Blazor using NodaTime
Stars: ✭ 49 (+25.64%)
Mutual labels:  asp-net-core, blazor
XAF Security E4908
This repository contains examples for Role-based Access Control, Permission Management, and OData / Web / REST API Services for Entity Framework and XPO ORM
Stars: ✭ 47 (+20.51%)
Mutual labels:  asp-net-core, blazor
BlazorSimpleSurvey
Blazor Simple Survey
Stars: ✭ 39 (+0%)
Mutual labels:  blazor, blazor-server
Blazor-CRUD-With-CloudFirestore
Single Page Application (SPA) using Blazor with the help of Google Cloud Firestore as Database provider
Stars: ✭ 34 (-12.82%)
Mutual labels:  asp-net-core, blazor
SPA-With-Blazor
Creating a Single Page Application with Razor pages in Blazor using Entity Framework Core database first approach.
Stars: ✭ 27 (-30.77%)
Mutual labels:  asp-net-core, blazor
Blazor.PersianDatePicker
A free JavaScript Jalali (Persian) and Gregorian (Miladi) dual datepicker library for Blazor applications
Stars: ✭ 40 (+2.56%)
Mutual labels:  blazor, blazor-server
MvvmBlazor
A lightweight Blazor Mvvm Library
Stars: ✭ 203 (+420.51%)
Mutual labels:  blazor, blazor-server
Home
Home for Blazor Extensions
Stars: ✭ 51 (+30.77%)
Mutual labels:  asp-net-core, blazor
planningpoker4azure
Planning Poker 4 Azure
Stars: ✭ 49 (+25.64%)
Mutual labels:  asp-net-core, blazor
TheLastTime
C# .NET 5 Blazor WebAssembly Progressive Web Application that tracks when was the last time you did something
Stars: ✭ 23 (-41.03%)
Mutual labels:  asp-net-core, blazor

EmbeddedBlazorContent

NuGet Gitter GitHub Stars GitHub Issues MIT Donate

This library helps you with server side Blazor projects to enable content files from BlazorLib projects. In my opinion, it is the most perfomant and convenient way for using embedded content files from Blazor Libraries at this moment.

Usage

  • Install the latest version from nuget: NuGet

  • Enable host return static content from embedded resources.

# Startup.cs
app.UseEmbeddedBlazorContent(assembly);

// Or with custom request path

app.UseEmbeddedBlazorContent(assembly, "/staticContent");
  • Include links to static contents in a page
# _Host.cshtml
@Html.EmbeddedBlazorContent(assembly)

// Or with custom request path

@Html.EmbeddedBlazorContent(assembly, "/staticContent")

// Or all embedded content from all hosted asemblies

@Html.EmbeddedBlazorContent()

Examples

  • EmbeddedBlazorContent.ExampleApp
  • EmbeddedBlazorContent.ExampleLib

License

MIT

News

EmbeddedBlazorContent 1.10.0

  • Updated to .NET Core 3.1 Preview 1

EmbeddedBlazorContent 1.9.0

  • Updated to .NET Core 3.0

EmbeddedBlazorContent 1.8.0

  • Updated to .NET Core 3.0 RC 1

EmbeddedBlazorContent 1.7.0

  • Updated to .NET Core 3.0 Preview 9

EmbeddedBlazorContent 1.4.0

  • .NET Core 3.0.0-preview8.19405.7

EmbeddedBlazorContent 1.3.0

  • .NET Core 3.0.0-preview7.19365.7

EmbeddedBlazorContent 1.2.0

  • .NET Core 3.0.100-preview6-012264
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].