NuGet ยท nuget

Redeon.SuperSiteEngineCore.Web.Eltheon.Core

Core library for Eltheon Framework

Install

Install-Kommandos

dotnet add package Redeon.SuperSiteEngineCore.Web.Eltheon.Core --version 0.9.0.134
<PackageReference Include="Redeon.SuperSiteEngineCore.Web.Eltheon.Core" Version="0.9.0.134" />
paket add Redeon.SuperSiteEngineCore.Web.Eltheon.Core --version 0.9.0.134
Install-Package Redeon.SuperSiteEngineCore.Web.Eltheon.Core -Version 0.9.0.134

README

Vorschau

Redeon.SuperSiteEngineCore.Web.Eltheon.Core

Overview

Redeon.SuperSiteEngineCore.Web.Eltheon.Core is the meta-package that stitches all Eltheon building blocks into a single reference. It aggregates ConfigFiles, Globals, DataProvider and every feature package (Email, Identity, InMemory, Localization, Logging, Plugins, Service, SignalR, etc.) so template hosts can depend on one package and gain every capability.

Contents

  • Re-exports the full feature stack as PackageReferences; consuming this package ensures version alignment between features.
  • Provides shared abstractions and extension points that are not bound to an individual feature.
  • Meant to be referenced by hosts, templates or plugin SDKs that need the entire Eltheon runtime surface.

Usage

<PackageReference Include="Redeon.SuperSiteEngineCore.Web.Eltheon.Core" Version="0.9.0.x" />

After referencing the package, register the pieces you need (e.g., GlobalConfig.Initialize, AddSignalR, AddHostedService<ArchiveLogsService>()). You still configure DI per feature, but you no longer manage individual package versions.

Notes

  • Because this is an umbrella package, it does not add services to the container on its own. Review the README of each sub-feature to understand how to register it.
  • Keep the package up to date whenever you add/remove features so version drift does not occur inside the host.