Skip to content

Commit

Permalink
Merge pull request #44 from json-api-dotnet/dependabot-nuget-jetbrain…
Browse files Browse the repository at this point in the history
…s.resharper.globaltools-2023.3.2

Bump jetbrains.resharper.globaltools from 2023.3.1 to 2023.3.2
  • Loading branch information
bkoelman authored Dec 22, 2023
2 parents 69485e4 + b6d9866 commit 5a66695
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"jetbrains.resharper.globaltools": {
"version": "2023.3.1",
"version": "2023.3.2",
"commands": [
"jb"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ private static void CopyPropertyValues(JsonApiOptions source, JsonApiOptions des
{
foreach (PropertyInfo property in PropertyCache)
{
property.SetMethod!.Invoke(destination, new[]
{
property.GetMethod!.Invoke(source, null)
});
property.SetMethod!.Invoke(destination, [property.GetMethod!.Invoke(source, null)]);
}
}
}
Expand Down

0 comments on commit 5a66695

Please sign in to comment.