Schemata.Modular
1.0.0-preview.24175.48
This is a prerelease version of Schemata.Modular.
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.Modular --version 1.0.0-preview.24175.48
NuGet\Install-Package Schemata.Modular -Version 1.0.0-preview.24175.48
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.Modular" Version="1.0.0-preview.24175.48" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Schemata.Modular --version 1.0.0-preview.24175.48
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Schemata.Modular, 1.0.0-preview.24175.48"
#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.Modular as a Cake Addin #addin nuget:?package=Schemata.Modular&version=1.0.0-preview.24175.48&prerelease // Install Schemata.Modular as a Cake Tool #tool nuget:?package=Schemata.Modular&version=1.0.0-preview.24175.48&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.UseLogging();
schema.UseHttpLogging();
schema.UseW3CLogging();
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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Schemata.Core (>= 1.0.0-preview.24175.48)
-
net8.0
- Schemata.Core (>= 1.0.0-preview.24175.48)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Schemata.Modular:
Package | Downloads |
---|---|
Schemata.Application.Complex.Targets
Schemata Application Framework - Comprehensive Application Project Targets |
|
Schemata.Application.Modular.Targets
Schemata Application Framework - Modular Application Project Targets |
GitHub repositories
This package is not used by any popular GitHub repositories.