Skip to content

Commit

Permalink
Merge pull request #138 from getsentry/feat/lower-json-requirement
Browse files Browse the repository at this point in the history
feat: require lower versions of Json.NET
  • Loading branch information
bruno-garcia authored Nov 15, 2018
2 parents 8f5e718 + e9e1906 commit 212a4a8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Sentry/Sentry.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@
<Description>Official SDK for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.</Description>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
<PackageReference Include="Newtonsoft.Json" Version="6.0.8" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Sentry.PlatformAbstractions" Version="1.0.0" />
<PackageReference Include="Sentry.Protocol" Version="1.0.2" />
<PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
Expand Down

0 comments on commit 212a4a8

Please sign in to comment.