Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nlog/nlog.wcf
NLog target for sending LogEvents over WCF
https://github.com/nlog/nlog.wcf
csharp dotnet nlog nlog-target servicemodel wcf
Last synced: 10 days ago
JSON representation
NLog target for sending LogEvents over WCF
- Host: GitHub
- URL: https://github.com/nlog/nlog.wcf
- Owner: NLog
- License: bsd-3-clause
- Created: 2022-06-05T10:08:44.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-20T15:20:17.000Z (12 months ago)
- Last Synced: 2024-08-01T04:31:37.188Z (5 months ago)
- Topics: csharp, dotnet, nlog, nlog-target, servicemodel, wcf
- Language: C#
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NLog.WCF
NLog [WCF target](https://github.com/NLog/NLog/wiki/LogReceiverService-target) for sending LogEvents to NLog Receiver Service (using WCF or Web Services)[![Version](https://badge.fury.io/nu/NLog.WCF.svg)](https://www.nuget.org/packages/NLog.WCF)
[![AppVeyor](https://img.shields.io/appveyor/ci/nlog/NLog-WCF/master.svg)](https://ci.appveyor.com/project/nlog/NLog-WCF/branch/master)### How to install
1) Install the package
`Install-Package NLog.WCF` or in your csproj:
```xml
```2) Add to your nlog.config:
```xml
```Alternative register from code using [fluent configuration API](https://github.com/NLog/NLog/wiki/Fluent-Configuration-API):
```xml
LogManager.Setup().SetupExtensions(ext => {
ext.RegisterTarget();
});
```See also [NLog Wiki](https://github.com/NLog/NLog/wiki/LogReceiverService-target) for available options and examples.