Explore documentation
Installing Logtail .NET client
Logtail allows you to collect logs directly from any .NET application. Supported language versions are:
- .NET 5 or newer
Installing Logtail .NET client
In Visual Studio
In Visual Studio, open NuGet Package Manager Console by clicking Tools → NuGet Package Manager → Package Manager Console
In the opened console, run the following command:
Install-Package Logtail
Then run the following command to install NLog.Extensions.Logging
package:
Install-Package NLog.Extensions.Logging
In PowerShell command line
To install the Logtail
package using PowerShell, run the following command in your project’s directory:
dotnet add package Logtail
Then install NLog.Extensions.Logging
package using the following command:
dotnet add package NLog.Extensions.Logging