.net core support status

Other topics

Status

Currently there are numerous incompatibilities with .Net core. This will show status of NancyFx package status. This is grouped by functionality. Currently support is for Nancy 2.* which has not released a stable version yet.

Nancy core

Nancy : 2.0.0-clinteastwood

Nancy Boostrappers

Nancy.Bootstrappers.Ninject - Not Supported

Nancy View Engines

Nancy.ViewEngines.Razor - Not Supported issue #2521

Nancy Authentication

Nancy.Authentication.Stateless : 2.0.0-clinteastwood

Nancy FluentValidation

Note: Must use at least package ""FluentValidation.AspNetCore : 6.4.0-beta9

Nancy.Validation.FluentValidation : 2.0.0-clinteastwood

Routing changes

No Longer supported:

Get ["/"] = parameters => {
    return View["index"];
};

Changed to:

Get("/", parameters => {
    return View["index"];
});

Contributors

Topic Id: 8591

Example Ids: 26861,26862

This site is not affiliated with any of the contributors.