Tolitech.CodeGenerator.Logging 1.0.3-alpha-2

This is a prerelease version of Tolitech.CodeGenerator.Logging.
dotnet add package Tolitech.CodeGenerator.Logging --version 1.0.3-alpha-2
NuGet\Install-Package Tolitech.CodeGenerator.Logging -Version 1.0.3-alpha-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="Tolitech.CodeGenerator.Logging" Version="1.0.3-alpha-2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tolitech.CodeGenerator.Logging --version 1.0.3-alpha-2
#r "nuget: Tolitech.CodeGenerator.Logging, 1.0.3-alpha-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 Tolitech.CodeGenerator.Logging as a Cake Addin
#addin nuget:?package=Tolitech.CodeGenerator.Logging&version=1.0.3-alpha-2&prerelease

// Install Tolitech.CodeGenerator.Logging as a Cake Tool
#tool nuget:?package=Tolitech.CodeGenerator.Logging&version=1.0.3-alpha-2&prerelease

Logging

Logging library used in projects created by the Code Generator tool.

This project contains abstract classes for implementing and customizing logging providers.

Tolitech Code Generator Tool: http://www.tolitech.com.br

Examples:

public class LogProvider : LoggerProvider
{
    public override bool IsEnabled(LogLevel logLevel)
    {
        return true;
    }

    public override void WriteLog(LogEntry Info)
    {
        Console.WriteLine($"ActionName = {Info.ActionName}");
        Console.WriteLine($"Category = {Info.Category}");
        Console.WriteLine($"FilePath = {Info.FilePath}");
        Console.WriteLine($"LineNumber = {Info.LineNumber}");
        Console.WriteLine($"UserName = {Info.UserName}");
        Console.WriteLine($"HostName = {LogEntry.HostName}");
    }
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Tolitech.CodeGenerator.Logging:

Package Downloads
Tolitech.CodeGenerator.Logging.Database

Logging database library for Tolitech Code Generator.

Tolitech.CodeGenerator.Logging.File

Logging file library for Tolitech Code Generator.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3-alpha-2 193 12/9/2021
1.0.3-alpha-1 151 12/3/2021
1.0.2 635 1/3/2021
1.0.0 668 6/14/2020

More information at http://www.tolitech.com.br/