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 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Target netstandards2.0 in ClassLib instead of netcoreapp2.0

Updates AutoFixure to 4.4.0 due to the netstandards support
  • Loading branch information
Olle Jacobsen
Olle Jacobsen committed May 31, 2018
commit cb039f6cb222241cd16672d471fb200f85618de1
@@ -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,7 +2,7 @@

<PropertyGroup>
<DebugType>full</DebugType>
<TargetFrameworks>netcoreapp2.0;net40</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net40</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>8.0.0</Version>
<Authors>Loggly</Authors>
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.