Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Target netstandards2.0 in ClassLib instead of netcoreapp2.0 #18

Merged
merged 3 commits into from Sep 13, 2018
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -1,6 +1,7 @@
namespace log4net_loggly.UnitTests
{
using System;
using AutoFixture;
using FluentAssertions;
using JetBrains.Annotations;
using log4net;
@@ -11,7 +12,6 @@
using Moq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Ploeh.AutoFixture;
using Xunit;

[UsedImplicitly]
@@ -7,7 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoFixture" Version="3.50.6" />
<PackageReference Include="AutoFixture" Version="4.4.0" />
<PackageReference Include="AutoFixture.SeedExtensions" Version="4.4.0" />
<PackageReference Include="Castle.Core" Version="4.1.1" />
<PackageReference Include="FluentAssertions" Version="4.19.4" />
<PackageReference Include="JetBrains.Annotations" Version="11.0.0" />
@@ -22,4 +23,8 @@
<ProjectReference Include="..\log4net-loggly\log4net-loggly.csproj" />
</ItemGroup>

<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>

</Project>
@@ -2,16 +2,16 @@

<PropertyGroup>
<DebugType>full</DebugType>
<TargetFrameworks>netcoreapp2.0;net40</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net40</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>8.0.0</Version>
<Version>8.0.1</Version>
<Authors>Loggly</Authors>
<Company>Loggly</Company>
<PackageLicenseUrl>http://opensource.org/licenses/MIT</PackageLicenseUrl>
<Product>Loggly</Product>
<PackageProjectUrl>http://github.com/loggly/log4net-loggly</PackageProjectUrl>
<Description>Custom log4Net Appender to send logs to Loggly</Description>
<PackageReleaseNotes>.NET Core 2.0 support with old .NET frameworks compatibility</PackageReleaseNotes>
<PackageReleaseNotes>.NET Standard 2.0 support with old .NET frameworks compatibility</PackageReleaseNotes>
<Copyright>Copyright 2017</Copyright>
<PackageTags>Loggly-log4net log4net appender logs</PackageTags>
</PropertyGroup>
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.