Schemata.Application.Complex.Targets
1.0.0-preview.24172.50
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.
See the version list below for details.
dotnet add package Schemata.Application.Complex.Targets --version 1.0.0-preview.24172.50
NuGet\Install-Package Schemata.Application.Complex.Targets -Version 1.0.0-preview.24172.50
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.24172.50" />
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.24172.50
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Schemata.Application.Complex.Targets, 1.0.0-preview.24172.50"
#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.24172.50&prerelease // Install Schemata.Application.Complex.Targets as a Cake Tool #tool nuget:?package=Schemata.Application.Complex.Targets&version=1.0.0-preview.24172.50&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Schemata
Application Framework aims on modular business applications.
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.UseDeveloperExceptionPage();
schema.UseHttps();
schema.UseStaticFiles();
schema.UseCookiePolicy();
schema.UseRouting();
schema.UseCors();
schema.UseAuthentication(authenticate => {
authenticate.AddCookie();
});
schema.ConfigureServices(services => {
services.AddDistributedMemoryCache();
});
schema.UseSession();
schema.UseControllers();
schema.UseModular();
});
var app = builder.Build();
app.Run();
Features
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Schemata.Core (>= 1.0.0-preview.24172.50)
- Schemata.Modular (>= 1.0.0-preview.24172.50)
-
net8.0
- Schemata.Core (>= 1.0.0-preview.24172.50)
- Schemata.Modular (>= 1.0.0-preview.24172.50)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.