RockLib.Logging.AspNetCore
2.0.0-alpha02
Prefix Reserved
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
<PackageReference Include="RockLib.Logging.AspNetCore" Version="2.0.0-alpha02" />
paket add RockLib.Logging.AspNetCore --version 2.0.0-alpha02
#r "nuget: RockLib.Logging.AspNetCore, 2.0.0-alpha02"
// 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 | Versions 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. |
-
.NETFramework 4.6.2
- Microsoft.AspNetCore.Hosting.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Http (>= 2.2.2)
- RockLib.Logging (>= 2.0.0-alpha09)
-
.NETStandard 2.0
- Microsoft.AspNetCore.Hosting.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Http (>= 2.2.2)
- RockLib.Logging (>= 2.0.0-alpha09)
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.2 | 341 | 10/23/2024 |
5.1.1 | 1,442 | 7/18/2024 |
5.1.0 | 3,371 | 2/26/2024 |
5.1.0-alpha.1 | 59 | 2/23/2024 |
5.0.0 | 351 | 2/15/2024 |
5.0.0-alpha.1 | 89 | 1/31/2024 |
4.0.1 | 17,234 | 2/22/2023 |
4.0.0 | 12,348 | 10/21/2022 |
4.0.0-alpha.1 | 169 | 10/20/2022 |
3.2.4 | 53,554 | 8/11/2021 |
3.2.3 | 5,919 | 7/30/2021 |
3.2.2 | 1,560 | 7/27/2021 |
3.2.1 | 2,694 | 7/13/2021 |
3.2.0 | 17,624 | 5/20/2021 |
3.1.3 | 3,703 | 5/6/2021 |
3.1.1 | 8,590 | 4/12/2021 |
3.1.0 | 807 | 4/12/2021 |
3.0.1 | 6,156 | 3/3/2021 |
3.0.0 | 14,992 | 2/19/2021 |
3.0.0-alpha01 | 821 | 1/15/2021 |
2.0.5 | 30,616 | 7/30/2020 |
2.0.4 | 1,435 | 7/16/2020 |
2.0.2 | 187,653 | 5/9/2019 |
2.0.1 | 983 | 5/7/2019 |
2.0.0 | 1,024 | 4/25/2019 |
2.0.0-alpha03 | 879 | 4/5/2019 |
2.0.0-alpha02 | 811 | 3/27/2019 |
2.0.0-alpha01 | 3,411 | 1/8/2019 |
1.0.1 | 5,462 | 7/31/2018 |
1.0.0 | 2,375 | 6/19/2018 |
1.0.0-alpha04 | 1,262 | 6/8/2018 |
1.0.0-alpha03 | 1,184 | 6/6/2018 |
1.0.0-alpha02 | 1,308 | 5/30/2018 |
1.0.0-alpha01 | 1,181 | 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.