Schemata.Application.Complex.Targets 1.0.0-preview.24203.51

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

// Install Schemata.Application.Complex.Targets as a Cake Tool
#tool nuget:?package=Schemata.Application.Complex.Targets&version=1.0.0-preview.24203.51&prerelease

Schemata

Application Framework aims on modular business applications.

GitHub Workflow Status Codecov license

Quick Start

dotnet new web
dotnet add package --prerelease Schemata.Application.Complex.Targets
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;

var builder = WebApplication.CreateBuilder(args)
                            .UseSchemata(schema => {
                                 schema.UseLogging();

                                 schema.UseDeveloperExceptionPage();
                                 schema.UseForwardedHeaders();
                                 schema.UseHttps();
                                 schema.UseCookiePolicy();
                                 schema.UseRouting();
                                 schema.UseCors();
                                 schema.UseAuthentication(authenticate => {
                                     authenticate.AddCookie();
                                 });

                                 schema.ConfigureServices(services => {
                                     services.AddDistributedMemoryCache();
                                 });
                                 schema.UseSession();

                                 schema.UseControllers();

                                 schema.UseModular();

                                 schema.UseAuthorization(options => {
                                            options.AddEphemeralEncryptionKey()
                                                   .AddEphemeralSigningKey();
                                        })
                                       .UseCodeFlow()
                                       .UseRefreshTokenFlow()
                                       .UseIntrospection();

                                 schema.UseWorkflow();
                             });

var app = builder.Build();

app.Run();

Fields

Features

Features are components that can be added to the application startup.

All features must implement the ISimpleFeature interface.

Features have Order and Priority, which are Int32 values. The Order is used to determine the order to ConfigureServices methods are called. The Priority is used to determine the order to Configure<Application|Endpoints> methods are called.

Order and Priority between [0, 1_000_000_000) are reserved for built-in and Schemata extensions.

Built-in Features

A built-in feature can be activated by calling the Use method on the SchemataBuilder instance, they may have additional configuration methods.

Priority Feature Description
100_110_000 Logging Asp.Net Logging Middleware
100_120_000 HttpLogging Asp.Net HTTP Logging Middleware
100_130_000 W3CLogging Asp.Net W3C Logging Middleware
110_000_000 DeveloperExceptionPage Asp.Net Developer Exception Page Middleware
110_100_000 ForwardedHeaders Asp.Net Forwarded Headers Middleware
120_000_000 Https Asp.Net HTTPS & HTTPS Redirection Middlewares
130_000_000 CookiePolicy Asp.Net Cookie Policy Middleware
140_000_000 Routing Asp.Net Routing Middleware
141_100_000 Quota Asp.Net Rate Limiter Middleware
150_000_000 Cors Asp.Net CORS Middleware
160_000_000 Authentication Asp.Net Authentication & Authorization Middlewares
170_000_000 Session Asp.Net Session Middleware
210_000_000 Controllers Asp.Net MVC Middlewares, without Views

Extension Features

An extension feature can be activated like a built-in feature.

Priority Package Feature Description
310_000_000 Schemata.Identity.Foundation Identity Schemata Identity Foundation
320_000_000 Schemata.Authorization.Foundation Authorization Schemata Authorization Foundation
330_000_000 Schemata.Workflow.Foundation Workflow Schemata Workflow Foundation
There are no supported framework assets in this 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.0.0-preview.24259.22 44 5/9/2024
1.0.0-preview.24230.15 42 4/30/2024
1.0.0-preview.24227.10 49 4/27/2024
1.0.0-preview.24226.92 45 4/26/2024
1.0.0-preview.24226.39 46 4/26/2024
1.0.0-preview.24225.65 41 4/25/2024
1.0.0-preview.24225.61 35 4/25/2024
1.0.0-preview.24225.33 35 4/25/2024
1.0.0-preview.24224.26 44 4/24/2024
1.0.0-preview.24223.62 43 4/23/2024
1.0.0-preview.24223.23 42 4/23/2024
1.0.0-preview.24222.70 49 4/22/2024
1.0.0-preview.24222.23 40 4/22/2024
1.0.0-preview.24222.21 43 4/22/2024
1.0.0-preview.24222.20 43 4/22/2024
1.0.0-preview.24221.62 47 4/21/2024
1.0.0-preview.24221.60 39 4/21/2024
1.0.0-preview.24219.37 44 4/19/2024
1.0.0-preview.24219.35 40 4/19/2024
1.0.0-preview.24218.65 36 4/18/2024
1.0.0-preview.24217.50 64 4/17/2024
1.0.0-preview.24217.16 41 4/17/2024
1.0.0-preview.24217.15 43 4/17/2024
1.0.0-preview.24217.9 40 4/17/2024
1.0.0-preview.24216.60 50 4/16/2024
1.0.0-preview.24216.55 44 4/16/2024
1.0.0-preview.24215.70 41 4/15/2024
1.0.0-preview.24213.26 47 4/13/2024
1.0.0-preview.24213.25 40 4/13/2024
1.0.0-preview.24213.21 45 4/13/2024
1.0.0-preview.24213.20 42 4/13/2024
1.0.0-preview.24213.11 45 4/13/2024
1.0.0-preview.24213.8 45 4/13/2024
1.0.0-preview.24213.5 42 4/13/2024
1.0.0-preview.24212.62 42 4/12/2024
1.0.0-preview.24212.52 40 4/12/2024
1.0.0-preview.24212.51 35 4/12/2024
1.0.0-preview.24212.43 37 4/12/2024
1.0.0-preview.24212.37 47 4/12/2024
1.0.0-preview.24212.36 39 4/12/2024
1.0.0-preview.24212.29 43 4/12/2024
1.0.0-preview.24212.24 41 4/12/2024
1.0.0-preview.24212.17 43 4/12/2024
1.0.0-preview.24211.59 37 4/11/2024
1.0.0-preview.24211.57 37 4/11/2024
1.0.0-preview.24211.54 36 4/11/2024
1.0.0-preview.24211.51 36 4/11/2024
1.0.0-preview.24211.50 37 4/11/2024
1.0.0-preview.24211.49 36 4/11/2024
1.0.0-preview.24211.47 37 4/11/2024
1.0.0-preview.24211.24 47 4/11/2024
1.0.0-preview.24211.23 42 4/11/2024
1.0.0-preview.24211.21 35 4/11/2024
1.0.0-preview.24211.18 42 4/11/2024
1.0.0-preview.24210.56 38 4/10/2024
1.0.0-preview.24210.52 35 4/10/2024
1.0.0-preview.24210.51 33 4/10/2024
1.0.0-preview.24210.49 37 4/10/2024
1.0.0-preview.24210.43 42 4/10/2024
1.0.0-preview.24210.42 35 4/10/2024
1.0.0-preview.24210.34 35 4/10/2024
1.0.0-preview.24210.31 34 4/10/2024
1.0.0-preview.24210.30 36 4/10/2024
1.0.0-preview.24209.57 45 4/9/2024
1.0.0-preview.24209.56 50 4/9/2024
1.0.0-preview.24209.35 40 4/9/2024
1.0.0-preview.24209.19 46 4/9/2024
1.0.0-preview.24209.9 50 4/9/2024
1.0.0-preview.24208.59 48 4/8/2024
1.0.0-preview.24207.28 53 4/7/2024
1.0.0-preview.24207.14 49 4/7/2024
1.0.0-preview.24207.11 48 4/7/2024
1.0.0-preview.24207.8 44 4/7/2024
1.0.0-preview.24206.54 45 4/6/2024
1.0.0-preview.24204.4 52 4/4/2024
1.0.0-preview.24204.3 44 4/4/2024
1.0.0-preview.24204.2 43 4/4/2024
1.0.0-preview.24203.51 42 4/3/2024
1.0.0-preview.24202.68 47 4/2/2024
1.0.0-preview.24181.28 54 3/31/2024
1.0.0-preview.24181.19 39 3/31/2024
1.0.0-preview.24181.18 57 3/31/2024
1.0.0-preview.24181.10 44 3/31/2024
1.0.0-preview.24180.84 39 3/30/2024
1.0.0-preview.24180.78 46 3/30/2024
1.0.0-preview.24180.70 48 3/30/2024
1.0.0-preview.24180.68 43 3/30/2024
1.0.0-preview.24180.66 43 3/30/2024
1.0.0-preview.24180.39 41 3/30/2024
1.0.0-preview.24179.42 42 3/29/2024
1.0.0-preview.24179.41 39 3/29/2024
1.0.0-preview.24179.39 41 3/29/2024
1.0.0-preview.24179.36 42 3/29/2024
1.0.0-preview.24179.18 47 3/29/2024
1.0.0-preview.24178.52 45 3/28/2024
1.0.0-preview.24177.13 45 3/27/2024
1.0.0-preview.24176.57 27 3/26/2024
1.0.0-preview.24176.43 27 3/26/2024
1.0.0-preview.24176.38 43 3/26/2024
1.0.0-preview.24175.48 42 3/25/2024
1.0.0-preview.24175.44 39 3/25/2024
1.0.0-preview.24175.38 45 3/25/2024
1.0.0-preview.24175.32 45 3/25/2024
1.0.0-preview.24175.24 43 3/25/2024
1.0.0-preview.24174.7 47 3/24/2024
1.0.0-preview.24173.57 46 3/23/2024
1.0.0-preview.24173.48 44 3/23/2024
1.0.0-preview.24173.37 45 3/23/2024
1.0.0-preview.24173.34 48 3/23/2024
1.0.0-preview.24172.52 47 3/22/2024
1.0.0-preview.24172.51 51 3/22/2024
1.0.0-preview.24172.50 39 3/22/2024
1.0.0-preview.24172.48 47 3/22/2024
1.0.0-preview.24172.33 50 3/22/2024
1.0.0-preview.24169.56 60 3/19/2024
1.0.0-preview.24169.44 46 3/19/2024