Skip to content

Commit

Permalink
feat: support for .NET Core 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasticFiasco authored Aug 19, 2017
1 parent 68d50a5 commit 1cc0e26
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 24 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](http://semver.org/) and is followi

## Unreleased

### Added

- Support for .NET Core 2.0

## [4.1.0] - 2017-08-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
[![Join the chat at https://gitter.im/serilog/serilog](https://img.shields.io/gitter/room/serilog/serilog.svg)](https://gitter.im/serilog/serilog)
[![Help](https://img.shields.io/badge/stackoverflow-serilog-orange.svg)](http://stackoverflow.com/questions/tagged/serilog)

**Package** - [Serilog.Sinks.Http](https://www.nuget.org/packages/serilog.sinks.http)
| **Platforms** - .NET 4.5, .NET Standard 1.3
__Package__ - [Serilog.Sinks.Http](https://www.nuget.org/packages/serilog.sinks.http)
| __Platforms__ - .NET 4.5, .NET Standard 1.3, .NET Standard 2.0

## Table of contents

Expand Down
8 changes: 4 additions & 4 deletions src/Serilog.Sinks.Http/Serilog.Sinks.Http.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<VersionPrefix>4.1.0</VersionPrefix>
<AssemblyName>Serilog.Sinks.Http</AssemblyName>
<Description>Serilog event sink that sends HTTP POST requests over the network.</Description>
<TargetFrameworks>net45;netstandard1.3</TargetFrameworks>
<Description>A Serilog sink sending log events over HTTP.</Description>
<TargetFrameworks>net45;netstandard1.3;netstandard2.0</TargetFrameworks>
<RootNamespace>Serilog</RootNamespace>
<Authors>Mattias Kindborg</Authors>
<Company />
Expand All @@ -23,8 +23,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Serilog" Version="2.4.0" />
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="2.0.1" />
<PackageReference Include="Serilog" Version="2.5.0" />
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="2.1.1" />
<PackageReference Include="Serilog.Sinks.RollingFile" Version="3.3.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup Label="Configuration">
<OutputType>Library</OutputType>
</PropertyGroup>

<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<OutputTypeEx>library</OutputTypeEx>
<StartupObject />
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<TreatSpecificWarningsAsErrors />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
<PackageReference Include="Serilog" Version="2.4.0" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
<PackageReference Include="Serilog" Version="2.5.0" />
</ItemGroup>

<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.0" />
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
</ItemGroup>

</Project>
13 changes: 7 additions & 6 deletions test/Serilog.Sinks.HttpTests/Serilog.Sinks.HttpTests.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
<RootNamespace>Serilog</RootNamespace>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<TreatSpecificWarningsAsErrors />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="1.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="Polly" Version="5.0.6" />
<PackageReference Include="Serilog.Settings.Configuration" Version="2.3.1" />
<PackageReference Include="Shouldly" Version="2.8.2" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="Polly" Version="5.3.1" />
<PackageReference Include="Serilog.Settings.Configuration" Version="2.4.0" />
<PackageReference Include="Shouldly" Version="2.8.3" />
<PackageReference Include="xunit" Version="2.2.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
<PackageReference Include="Moq" Version="4.7.99" />
Expand Down

0 comments on commit 1cc0e26

Please sign in to comment.