Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Havunen committed Oct 18, 2024
1 parent 3554f1c commit 240addd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="Marvin.JsonPatch" Version="2.2.1" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.8" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.10" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ public sealed override bool CanConvert(Type typeToConvert)
}


return (JsonConverter)Activator.CreateInstance(typeof(GenericJsonPatchDocumentConverter<>).MakeGenericType(typeToConvert.GenericTypeArguments[0]),
Array.Empty<object>())!;
return (JsonConverter)Activator.CreateInstance(
typeof(GenericJsonPatchDocumentConverter<>).MakeGenericType(typeToConvert.GenericTypeArguments[0]),
[]
)!;
}
}
}
2 changes: 1 addition & 1 deletion SystemTextJsonPatch/SystemTextJsonPatch.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</ItemGroup>

<ItemGroup Condition="'$(targetframework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 240addd

Please sign in to comment.