Cirreum.Startup 1.0.117

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

Cirreum - Startup Library

NuGet Version NuGet Downloads GitHub Release

This package defines contracts and extension methods for startup services in C# .NET and Blazor applications.

Description

Cirreum.Startup allows developers to define one or more classes that implement specific interfaces, which are then automatically executed during application startup. This is particularly useful for initializing services, performing setup tasks, or executing configuration logic before the application begins its normal operation.

Key Interfaces

1. ISystemInitializer

  • Purpose: Defines a service that performs core application initialization, setup, or configuration.
  • Execution Order: Runs first, before any other startup services.
  • Usage: Typically used by component/library/service authors for critical system setup.
  • Restrictions: Must not depend on other startup interfaces.

2. IAutoInitialize

  • Purpose: Allows existing services to be automatically initialized during application startup.
  • Execution Order: Runs after ISystemInitializer and before IStartupTask.
  • Usage: Useful for services that need initialization before they can be used.
  • Auto-registration: The system attempts to auto-register services implementing this interface.

3. IStartupTask

  • Purpose: Defines a service that performs tasks after the application has been initialized.
  • Execution Order: Runs last, after ISystemInitializer and IAutoInitialize.
  • Customizable Priority: Includes an Order property to specify execution priority.

Important Notes

  • These interfaces are intended for Singleton services (Scoped in Blazor WASM).
  • Services implementing these interfaces are materialized during startup and are not disposed.
  • Each interface's primary method (RunAsync, InitializeAsync, ExecuteAsync) is called only once during application startup.

Usage

Implement the appropriate interface based on your initialization needs:

  • Use ISystemInitializer for core system setup.
  • Use IAutoInitialize for general service initialization.
  • Use IStartupTask for tasks that should run after the application is fully initialized.

Refer to individual interface documentation for detailed usage examples and restrictions.


Cirreum Foundation Framework - Layered simplicity for modern .NET

Product Compatible and additional computed target framework versions.
.NET 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 (8)

Showing the top 5 NuGet packages that depend on Cirreum.Startup:

Package Downloads
Cirreum.Runtime.Server

The Cirreum Runtime for Servers.

Cirreum.Components.WebAssembly

The Cirreum Component Library for WebAssembly.

Cirreum.Services.Client

The Services Infrastructure Library for WebAssembly Client applications.

Cirreum.Runtime.Messaging

The Runtime Messaging service configuration.

Cirreum.Runtime.Serverless

The Cirreum Runtime Serverless.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.117 111 6/5/2026
1.0.116 471 5/1/2026
1.0.115 409 4/24/2026
1.0.114 254 4/14/2026
1.0.113 387 4/9/2026
1.0.112 1,104 3/13/2026
1.0.111 168 3/12/2026
1.0.110 231 3/9/2026
1.0.109 289 3/6/2026
1.0.108 421 1/23/2026
1.0.107 276 1/21/2026
1.0.106 1,169 12/20/2025
1.0.105 524 12/16/2025
1.0.104 518 11/28/2025
1.0.103 640 11/11/2025
1.0.102 278 11/11/2025
1.0.101 277 11/11/2025
1.0.100 174 11/7/2025