NanoCore 8.0.2

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

// Install NanoCore as a Cake Tool
#tool nuget:?package=NanoCore&version=8.0.2

Nano Library

Build status NuGet NuGet

Nano is a library for rapidly building Net 8.0 applications.

The project is inspired by years of tedious repetitions, continuously re-writing similar code-snippets and libraries, to handle common functionality, not related to the business domain, such as logging, data persistence, message queuing, documentation, validation and similar.

Aspects and Benefits

The aspects and benefits of Nano, can be summarized as follows.

  • Provides configurable implementations for non-business related aspects of an application,
  • Combining the best practices, patterns, extensions and conventions of modern development.
  • Inject providers and register custom dependencies.
  • Override, extend or disable any part of Nano, not suitable for the application.
  • Derive concrete implementations, enriched with functionality, from base abstractions and interfaces, for all parts of the application.
  • Avoid wasting valuable development resources, on matters not related to the business.
  • Remain focused on modelling data and operations of the business domain.
Wiki

Check out the Nano Wiki, and follow our Quick Guide, and have your first Nano application running within the hour.

Also check out our Nano Templates.

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

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
8.0.15 178 4/2/2024
8.0.14 163 3/31/2024
8.0.13 144 3/29/2024
8.0.12 147 3/26/2024
8.0.11 232 3/18/2024
8.0.2 975 2/21/2024
7.2.38 2,061 11/7/2023
6.2.8 1,119 1/6/2023
5.1.31 1,513 1/19/2022
3.1.16 2,494 11/30/2020

- Updated to .NET 8.
- Added Header annotation for Api-Client.
- Added Api-Client service registration to console application (Nano.Web -> Nano.App).
- Reordered api-client authentication types.
- Added title for health check UI.
- Expanded Cors configuration options and updated Http OPTIONS middleware to be based on Cors policy.
- BREAKING: Moved Web.Hosting.AllowedOrigins to Web.Hosting.Cors.AllowedOrigins.
- BREAKING: Update identity implementation to use POST methods instead of GET and not expose email address as query parameter.
- Fixed Login Refresh that used incorrect validation key.
- Fixed audit exception when saving read only / not mapped properties.
- Added phone number to SignUp model.
- Improved version implementation to extend to query parameter and route. Also added to swagger.
- Added generate and verify custom token to IdentityManager and BaseIdentityController.
- Changed SecurityOptions.Jwt.ExpirationInHours to SecurityOptions.Jwt.ExpirationInMinutes.
- Resharper code issues.