SVSUAppLogger 1.0.18

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

// Install SVSUAppLogger as a Cake Tool
#tool nuget:?package=SVSUAppLogger&version=1.0.18

SVSUAppLogger

Getting Started

To install via visual studio: Click on the Project tab and select 'Manage NuGet Packages...'. Search for SVSUAppLogger and install that package.

To Install via command line: Run command 'nuget install SVSUAppLogger'

How to Use

Import the package into your Class file, VB form, etc.

Create the SVSUAppLogger object. The constructor has an optional argument to determine the filename that will be used for the log file created by SVSUAppLogger. The default log name will be 'AppLog' if now filename is specified.

NOTE: All log files created by this class will have a suffix appended to it containing ' - ${current_date}'

Example: VB.Net:

Imports SVSUAppLogger

Dim logger As SVSUAppLogger.FileLogger = New SVSUAppLogger.FileLogger("logDir\Test_Log")
logger.info("Test Info")
logger.error("Test Error")
logger.warn("Test Warning")
logger.debug("Test Debug")

C#:

using SVSUAppLogger;

public SVSUAppLogger.FileLogger logger = new SVSUAppLogger.FileLogger("logDir\\Test_Log");
logger.info("Test Info");
logger.error("Test Error");
logger.warn("Test Warning");
logger.debug("Test Debug");

Authors

  • Nathan Whitfield - Initial work

Release Notes

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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.4 is compatible.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 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
1.0.18 1,046 2/27/2018
1.0.17 891 2/26/2018
1.0.16 1,081 1/25/2018
1.0.15 1,017 1/25/2018

Initial Release