BlazorPlus 1.1.31

There is a newer version of this package available.
See the version list below for details.
dotnet add package BlazorPlus --version 1.1.31
NuGet\Install-Package BlazorPlus -Version 1.1.31
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="BlazorPlus" Version="1.1.31" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazorPlus --version 1.1.31
#r "nuget: BlazorPlus, 1.1.31"
#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.
// Install BlazorPlus as a Cake Addin
#addin nuget:?package=BlazorPlus&version=1.1.31

// Install BlazorPlus as a Cake Tool
#tool nuget:?package=BlazorPlus&version=1.1.31

BlazorPlus

BlazorPlus is a component library that helps you to write code more directly and easily, Single dll , light-weight (about 260KB dll) , Blazor Server/Client/WASM Side Session,Modal Dialog,Controls,File Upload,TreeView

Screenshot

Samples

live demo : http://demo.blazorplus.com/

demo code : https://github.com/BlazorPlus/BlazorPlusDemo

BlazorLinuxAdmin : https://github.com/BlazorPlus/BlazorLinuxAdmin

Nuget name : BlazorPlus https://www.nuget.org/packages/BlazorPlus/

Installation server-side :

1 - Startup.cs

in ConfigureServices :
	services.AddHttpContextAccessor();
	services.AddScoped<BlazorPlus.BlazorSession>();
in app.UseEndpoints : (before Fallback)
	endpoints.Map("/_blazorplus_handler", BlazorPlus.BlazorSession.ProcessRequestAsync);

2 - _Host.cshtml

in <head> :
	<script src="/_blazorplus_handler?action=script" type="text/javascript"></script>

3 - _Imports.razor

	@using BlazorPlus

4 - App.razor

at the front:
	<BlazorContainer IsShared="true" />

Now test it in Index.razor:

	<button @onclick="ShowHelloWorld">Hello World</button>
	@code{
		void ShowHelloWorld()
		{
			BlazorSession.Current.Alert("Greeting", "Hello World");
		}
	}

Installation WebAssembly

1 - Program.cs

	BlazorPlus.BlazorSession.InitForWasm(builder.Services);
	builder.Services.AddScoped<BlazorPlus.BlazorSession>();

2 - _Imports.razor

	@using BlazorPlus

3 - MainLayout.razor

at the front:
	@inject BlazorSession bses
	<BlazorContainer IsShared="true"/>

Now test it in Index.razor:

	<button @onclick="ShowHelloWorld">Hello World</button>
	@code{
		void ShowHelloWorld()
		{
			BlazorSession.Current.Alert("Greeting", "Hello World");
		}
	}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.2.46 3,341 11/8/2020
1.2.45 1,097 8/3/2020
1.2.44 1,559 6/27/2020
1.2.42 1,021 6/14/2020
1.2.39 1,381 6/13/2020
1.2.38 1,000 6/12/2020
1.2.37 1,292 6/10/2020
1.2.36 1,138 6/6/2020
1.1.31 1,074 5/29/2020
1.1.30 1,049 5/26/2020
1.1.29 953 5/25/2020
1.1.28 1,034 5/19/2020
1.1.27 1,027 5/14/2020
1.1.26 1,008 4/23/2020
1.1.25 989 4/23/2020
1.1.24 1,016 4/21/2020
1.1.23 1,047 4/12/2020
1.1.22 1,022 4/11/2020
1.1.21 1,019 4/10/2020
1.0.18 1,020 4/8/2020
1.0.17 1,058 4/7/2020
1.0.16 998 4/6/2020
1.0.15 1,067 4/5/2020
1.0.14 1,134 4/3/2020
1.0.13 1,013 4/3/2020
1.0.12 1,066 4/2/2020
1.0.11 1,007 4/1/2020
1.0.10 999 3/31/2020
1.0.8 997 3/31/2020
1.0.7 1,009 3/30/2020
1.0.6 1,108 3/30/2020
1.0.4 1,032 3/28/2020

1.1.31,30,29,38,27
More small features , quality update
1.1.26
Support js file push dynamicly.
1.1.25
BlazorListView
1.1.24
BlazorTreeView
1.1.23
PlusCanvas
1.1.21
Support client-side WASM
1.0.18
SVG , Dialog with URL
1.0.17
PlusComponentRenderer
1.0.16
fix small bug
1.0.15
improve UI, use EventCallback<>
1.0.14
The BlazorBrowser object
1.0.13
improve PlusControl
1.0.12
improve scripting , BlazorDomTree
1.0.11
fix the PlusControl EnterKey event