RockLib.Logging.AspNetCore 2.0.0-alpha02

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of RockLib.Logging.AspNetCore.
There is a newer version of this package available.
See the version list below for details.
dotnet add package RockLib.Logging.AspNetCore --version 2.0.0-alpha02
NuGet\Install-Package RockLib.Logging.AspNetCore -Version 2.0.0-alpha02
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="RockLib.Logging.AspNetCore" Version="2.0.0-alpha02" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RockLib.Logging.AspNetCore --version 2.0.0-alpha02
#r "nuget: RockLib.Logging.AspNetCore, 2.0.0-alpha02"
#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 RockLib.Logging.AspNetCore as a Cake Addin
#addin nuget:?package=RockLib.Logging.AspNetCore&version=2.0.0-alpha02&prerelease

// Install RockLib.Logging.AspNetCore as a Cake Tool
#tool nuget:?package=RockLib.Logging.AspNetCore&version=2.0.0-alpha02&prerelease

Extensions to create hooks into Microsoft.Extensions.Logging

This package was built from the source code at https://github.com/RockLib/RockLib.Logging/tree/942f72c940f361a3781d6c3d8360ccb561845f43

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
5.1.0 667 2/26/2024
5.1.0-alpha.1 47 2/23/2024
5.0.0 269 2/15/2024
5.0.0-alpha.1 73 1/31/2024
4.0.1 12,973 2/22/2023
4.0.0 11,753 10/21/2022
4.0.0-alpha.1 155 10/20/2022
3.2.4 52,759 8/11/2021
3.2.3 5,842 7/30/2021
3.2.2 1,422 7/27/2021
3.2.1 2,667 7/13/2021
3.2.0 17,281 5/20/2021
3.1.3 3,654 5/6/2021
3.1.1 8,551 4/12/2021
3.1.0 764 4/12/2021
3.0.1 6,126 3/3/2021
3.0.0 14,585 2/19/2021
3.0.0-alpha01 786 1/15/2021
2.0.5 30,561 7/30/2020
2.0.4 1,384 7/16/2020
2.0.2 186,777 5/9/2019
2.0.1 949 5/7/2019
2.0.0 993 4/25/2019
2.0.0-alpha03 855 4/5/2019
2.0.0-alpha02 786 3/27/2019
2.0.0-alpha01 3,387 1/8/2019
1.0.1 5,429 7/31/2018
1.0.0 2,332 6/19/2018
1.0.0-alpha04 1,236 6/8/2018
1.0.0-alpha03 1,148 6/6/2018
1.0.0-alpha02 1,280 5/30/2018
1.0.0-alpha01 1,154 5/25/2018

RockLib.Logging.AspNetCore version 2.0.0-alpha02

- Removes unnecessary parameters from UseRockLibLogging extension methods.
- Improvements to the UseRockLibLogging extension method that creates an ILogger fro LoggerFactory.
 - The ILogger is registered as transient so that implementations of IContextProvider are created fresh for each instance of Logger. This will allow an implementation to be created that uses the current HttpContext to add context to LogEntry objects.
 - Registers a BackgroundLogProcessor as a singleton ILogProcessor so that instances of Logger can share the same log processor.
 - Since the lifecycle of the Logger is short, don't create it as a reloading proxy.
- Updates packages to latest versions.