AppLogger.Common 1.0.8

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

// Install AppLogger.Common as a Cake Tool
#tool nuget:?package=AppLogger.Common&version=1.0.8

File Logging Usage:

DefaultLogger.Log(string); Logger will create folder with "AppLogs" at root folder.


SQL Logger

Configure: Configure at the starting of appstart(Global, appconfig, etc) 1.AuditDBConfiguration.SQLConnection(connectionstringKey); Uasge: Action : [SQLActionAudit] for MVC controller, or [SQLActionAPIAudit] for API controller as filter attribute Service: AppAudit.Log(new Audit(){ }); // Fill object

Connection string be like: <add name="connectionstringName" connectionString="server=serverpath;database=dbname;uid=username;password=password" providerName="System.data.sqlclient" />

For SQL logger should configure with connection string key at the top of appstart file


Mongo Logger

Configur: Configure at the starting of appstart(Global, appconfig, etc) 1.AuditDBConfiguration.MongoDBConfig(connectionstringKey); Uasge: Action : [MongoActionAudit] for MVC controller, or [MongoActionAPIAudit] for API controller as filter attribute Service: AppMongoAudit.Log(new Audit(){ }); // Fill object

Connection string like: <add name="connectionKeyName" connectionString="mongodb://localhost:2717/Auditing" />

For Mongo logger should configure with connection string key at the top of appstart file

DocumentDB Logger

Configur: Configure at the starting of appstart(Global, appconfig, etc) 1.AuditDBConfiguration.DocumentDBConfig(connectionstringKey); Uasge: Action : [CosmosActionAudit] for MVC controller, or [CosmosActionApiAudit] for API controller as filter attribute Service: CosmosAudit.Log(new Audit(){ }); // Fill object

Connection string like: <add name="connectionKeyName" connectionString="AccountEndpoint=endpointurl;AccountKey=azureAccountKey;Database=Auditing" />

For DocumentDB logger should configure with connection string key at the top of appstart file

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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.8 694 8/14/2019
1.0.7 606 8/8/2019
1.0.6 621 8/8/2019
1.0.5 599 8/7/2019
1.0.4 607 8/7/2019
1.0.3 578 8/7/2019
1.0.2 560 8/7/2019

Summary of changes made in this release of the package.