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

Upgrade/net.standard.2.0 #11

Merged
merged 5 commits into from Apr 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

Set minimum .NET Framework to 4.0

  • Loading branch information
Shweta Jain
Shweta Jain committed Apr 10, 2018
commit f434c3906cddb6eac6833a7d7859d0ee49af1950
@@ -47,8 +47,6 @@ public void sendBufferedLogsToLoggly(ILogglyAppenderConfig config, bool isBulk)
}
finally
{
arrayMessage.Clear();
arrayMessage = null;
GC.Collect();
}
}
@@ -2,16 +2,16 @@

<PropertyGroup>
<DebugType>full</DebugType>
<TargetFrameworks>netcoreapp2.0;net452</TargetFrameworks>
<TargetFrameworks>netcoreapp2.0;net40</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>7.2.3</Version>
<Version>8.0.0</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>Decrease wait time interval for bulk mode</PackageReleaseNotes>
<PackageReleaseNotes>.NET Core 2.0 support with old .NET frameworks compatibility</PackageReleaseNotes>
<Copyright>Copyright 2017</Copyright>
<PackageTags>Loggly-log4net log4net appender logs</PackageTags>
</PropertyGroup>
@@ -21,7 +21,7 @@
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
<ItemGroup Condition="'$(TargetFramework)' == 'net40'">
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.