v1.0.0-alpha007
New alpha release 🎉
Installation
Via NuGet:
dotnet add package Skybrud.Essentials.AspNetCore --version 1.0.0-alpha007
or:
Install-Package Skybrud.Essentials.AspNetCore -Version 1.0.0-alpha007
Changelog
-
Updated Skybrud.Essentials dependency (see f6bd945)
The dependency has now been updated to the newest version. -
Added
GetString
method overload to theQueryStringExtensions
class (see 9272e0f)
The new method overload takes a fallback value which is returned instead of the query string doesn't contain a value for the specified key. -
Added
GetForwardedFor
method to theRequestExtensions
class (see 71e4eee)
The method adds a convenient way for getting the value of theX-Forwarded-For
header of aHttpRequest
. -
Added .NET 6 as an additional target framework (see 6e60dcc)
Since we're moving towards .NET 6, this package might as well target .NET 6 explicitly. -
Added support for nullable reference types (see 96fe7a3)
This is the way 😎 -
Moving NewtonsoftJson classes a bit around (see 8016b19, ae6a25e)
The classes now share a common ancestor namespace to give the code a better structure. This release also removes the obsoleteJson*
classes.