Skip to content

Commit

Permalink
update argon
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Feb 3, 2023
1 parent 120d4c5 commit 2e48f89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Verify/Serialization/CustomContractResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public CustomContractResolver(SerializationSettings settings) =>
protected override JsonDictionaryContract CreateDictionaryContract(Type objectType)
{
var contract = base.CreateDictionaryContract(objectType);
contract.DictionaryKeyResolver = value => ResolveDictionaryKey(contract, value);
contract.DictionaryKeyResolver = (name, original) => ResolveDictionaryKey(contract, name);
if (settings.SortDictionaries)
{
contract.OrderByKey = true;
Expand Down
2 changes: 1 addition & 1 deletion src/Verify/Verify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.2" PrivateAssets="All" />
<PackageReference Include="Fody" Version="6.6.4" PrivateAssets="All" />
<PackageReference Include="SimpleInfoName" Version="2.1.0" />
<PackageReference Include="Argon" Version="0.3.2" />
<PackageReference Include="Argon" Version="0.3.3" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
<PackageReference Include="ProjectDefaults" Version="1.0.84" PrivateAssets="all" />
<None Include="buildTransitive\Verify.props" Pack="true" PackagePath="buildTransitive\Verify.props" />
Expand Down

0 comments on commit 2e48f89

Please sign in to comment.