Alex.NET.RCL 10.0.18-alpha

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

Alex.NET.RCL

This package is intended for Blazor developement. Best of luck for you to use it otherwise. This package works with all Blazor hosting models and includes a reference to Alex.NET.Helper package.

Requires .NET 7 or later.

To implement the required css and js file add the following to your _Host.cshtml, _Layout.cstml, or index.html file.

Implementation Example

index.html/_Host.cshtml/_Layout.cshtml

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <title>Your App Title</title>
    <base href="/" />
    <link rel="stylesheet" href="_content/Alex.NET.RCL/Alex.NET.RCL.css" />
    <script defer src="_content/Alex.NET.RCL/Alex.NET.RCL.js"></script>
    <link rel="icon" type="image/png" href="favicon.png" />
</head>

Program.cs

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddAlex(args => {
    args.EncrypterKey = "your-encryption-key-here";
    args.CacheAbsoluteExpiration = TimeSpan.FromDays(90);
    args.CacheSlidingExpiration = TimeSpan.FromDays(90);
});
var app = builder.Build();

app.MapAlexServices();
await app.RunAsync();

--Note: some functionalities will not work in Blazor WASM hosted projects such as CacheVault and Logging.

Author

License

MIT

Product Compatible and additional computed target framework versions.
.NET 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
10.0.18-alpha 48 2/2/2026
10.0.17-alpha 50 2/1/2026
10.0.16-alpha 46 2/1/2026
10.0.15-alpha 51 2/1/2026
10.0.14-alpha 156 1/31/2026
Loading failed