VijayAnand.MauiBlazor.Markup 1.0.0-pre1

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

// Install VijayAnand.MauiBlazor.Markup as a Cake Tool
#tool nuget:?package=VijayAnand.MauiBlazor.Markup&version=1.0.0-pre1&prerelease                

.NET MAUI Blazor Toolkit

This toolkit a set of fluent helper methods and classes to simplify working with .NET MAUI Blazor in C#.

This toolkit depends on Microsoft.AspNetCore.Components.WebView.Maui NuGet package.

Most useful method will be Configure, which can be invoked on an instance of a BlazorWebView and its derivatives, and it simplifies the initialization of BlazorWebView into a single fluent method call as shown in the below sample.

Note: Gateway is a Razor component.

// For brevity, only the necessary code is made available. This can be nested anywhere a View can be defined
// The parameter names are shown for clarity and it's optional
// A BlazorWebView can manage multiple RootComponents, to achieve this, add another Tuple with parameter values of that component.
new BlazorWebView().Configure(hostPage: "wwwroot/index.html", (selector: "#app", componentType: typeof(Gateway), parameters: null))
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-android31.0 is compatible.  net6.0-ios was computed.  net6.0-ios15.2 is compatible.  net6.0-maccatalyst was computed.  net6.0-maccatalyst15.2 is compatible.  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. 
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 (1)

Showing the top 1 popular GitHub repositories that depend on VijayAnand.MauiBlazor.Markup:

Repository Stars
egvijayanand/dotnet-maui-samples
.NET MAUI Samples
Version Downloads Last updated
4.0.0-rc.1 25 9/11/2024
4.0.0-preview.7 38 8/16/2024
4.0.0-preview.6 32 7/10/2024
4.0.0-preview.5 32 6/12/2024
4.0.0-preview.4 44 5/24/2024
4.0.0-preview.3 48 4/18/2024
4.0.0-preview.2 54 3/17/2024
4.0.0-preview.1 59 2/18/2024
3.0.8 44 7/10/2024
3.0.7 35 6/12/2024
3.0.6 44 5/24/2024
3.0.5 66 4/18/2024
3.0.4 67 4/1/2024
3.0.3 73 3/17/2024
3.0.2 62 2/18/2024
3.0.1 64 1/26/2024
3.0.0 167 11/14/2023
3.0.0-rc.2.2 53 11/7/2023
3.0.0-rc.2.1 61 10/31/2023
3.0.0-rc.2 55 10/13/2023
3.0.0-rc.1 71 9/18/2023
3.0.0-preview.7 88 8/24/2023
3.0.0-preview.6 77 8/8/2023
3.0.0-preview.5 97 4/13/2023
3.0.0-preview.4 90 3/27/2023
3.0.0-preview.3 88 3/21/2023
3.0.0-preview.2 80 3/17/2023
3.0.0-preview.1 83 2/27/2023
2.0.10 67 11/7/2023
2.0.9 70 10/31/2023
2.0.8 89 10/13/2023
2.0.7 92 8/24/2023
2.0.6 81 8/24/2023
2.0.5 155 4/13/2023
2.0.4 103 3/27/2023
2.0.3 102 2/27/2023
2.0.1 300 12/13/2022
2.0.0 339 11/14/2022
1.0.12 97 8/24/2023
1.0.11 90 3/27/2023
1.0.10 101 2/27/2023
1.0.8 288 12/13/2022
1.0.7 323 11/14/2022
1.0.1 441 6/15/2022
1.0.0 628 5/23/2022
1.0.0-pre7 137 5/11/2022
1.0.0-pre6 149 4/28/2022
1.0.0-pre5 140 4/12/2022
1.0.0-pre4 135 3/18/2022
1.0.0-pre3 151 2/25/2022
1.0.0-pre2 167 1/31/2022
1.0.0-pre1 122 1/31/2022

What's new in ver. 1.0.0-pre1:

Initial release of toolkit with a set of fluent helper methods to configure BlazorWebView and simplify working with .NET MAUI Blazor in C#.

This is release is on top of .NET MAUI Preview 12, latest release as of Jan 2022.