Skip to content

Commit

Permalink
Create 1.0 Release
Browse files Browse the repository at this point in the history
It's really be 1.0 for a while, just never got around to making it official.
  • Loading branch information
dustinchilson committed Nov 12, 2019
1 parent 53e02d2 commit eb630bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 0.2
next-version: 1.0

assembly-versioning-scheme: MajorMinor
commit-message-incrementing: Disabled
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# NLog.Targets.GraylogHttp
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/d4e1107092654f41a7a513fc8954308e)](https://app.codacy.com/app/dustinchilson/NLog.Targets.GraylogHttp?utm_source=github.com&utm_medium=referral&utm_content=dustinchilson/NLog.Targets.GraylogHttp&utm_campaign=Badge_Grade_Dashboard)
[![Apache 2.0 licensed](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/dustinchilson/NLog.Targets.GraylogHttp/blob/master/LICENSE)
master)
[![NuGet](https://img.shields.io/nuget/v/NLog.Targets.GraylogHttp.svg)](https://www.nuget.org/packages/NLog.Targets.GraylogHttp)
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=dustinchilson/NLog.Targets.GraylogHttp)](https://dependabot.com)

Expand All @@ -17,9 +16,9 @@ This library is packaged as a nuget package available [here](https://www.nuget.o
Install-Package NLog.Targets.GraylogHttp
```

## NetStandard, .Net Core, .Net Framwwork 4.5
## NetStandard, .Net Core 2.1-3.0, .Net Framework 4.5

This library runs under netstandard 1.3 and fully supports both netstandard and .Net Framework
This library runs under netstandard 1.3 and fully supports both .Net Core 2.1-3.0 and .Net Framework 4.5

## Usage

Expand Down Expand Up @@ -50,9 +49,8 @@ Add or modify your NLog Configuration to add the new target and Extension Assemb
</nlog>
```


- *graylogServer* - REQUIRED - URI formatted address of your server (e.g. http://192.168.1.2, http://mygraylog.com)
- *graylogPort* - OPTIONAL - server port, normally specified by Input in Graylog
- *graylogServer* - REQUIRED - URI formatted address of your server (e.g. http://192.168.1.2, http://example.com, https://graylog.example.com:3030)
- *graylogPort* - OPTIONAL - server port, normally specified by Input in Graylog, Can also be specified in the server
- *facility* - OPTIONAL - variable could be used to identify your application, library, etc.

### Simple Logging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit eb630bc

Please sign in to comment.