LibLog 4.2.4

dotnet add package LibLog --version 4.2.4
                    
NuGet\Install-Package LibLog -Version 4.2.4
                    
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="LibLog" Version="4.2.4">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LibLog" Version="4.2.4" />
                    
Directory.Packages.props
<PackageReference Include="LibLog">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LibLog --version 4.2.4
                    
#r "nuget: LibLog, 4.2.4"
                    
#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.
#:package LibLog@4.2.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LibLog&version=4.2.4
                    
Install as a Cake Addin
#tool nuget:?package=LibLog&version=4.2.4
                    
Install as a Cake Tool

A source code package designed primarily for library and framework authors who want dependency free logging support in their component. Also useful in end applications. Works with .NET 4 and higher.

If you are a library or framework author and you wish to provide logging support in your component there are a  number of options: 1) Depend on a specific logging framework 2) Depend on Common.Logging 3) Implement your own ILog interface and make your consumers wire it up.

Option 1 is not desirable because it forces your users to use a particular framework. Option 2 is not desirable because it will add yet more nuget package dependencies and project references with associated versioning concerns in addition to wiring up. Option 3 is desirable because it is dependency free but requires that your users to remember to write an adapter and wire things up.

This package is a variation of option 3 but will automatically wire things up too.
- It will add an ILog, ILogProvider etc to YourRootNamespace.Logging
- ILog is one method to implement in comparison to Common.Logging ILog's ~65 members
- Using optimized reflection, it transparently supports NLog, Log4Net, EntLib Logging, Serilog and Loupe without any wiring up required by an end user, if the end user simply has a reference to any of these logging frameworks.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
4.2.4 1,517 10/29/2015
4.2.3 8,389 6/9/2015
4.2.2 3,714 4/15/2015
4.2.1 2,576 4/10/2015
4.2.0 11,585 4/7/2015
4.1.1 240 4/4/2015
4.0.2 222 4/2/2015
3.1.0 2,583 2/3/2015
3.0.0 153 2/2/2015
3.0.0-beta4 262 2/2/2015
3.0.0-beta3 149 2/2/2015
3.0.0-beta2 69 1/31/2015
3.0.0-beta1 76 1/30/2015
2.0.1 6,700 1/3/2015
2.0.0 137 1/3/2015
1.5.0 3,974 12/2/2014
Loading failed