Skip to content

Commit

Permalink
MAINTENANCE: lower the version System.Text.Json dependency to 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jslachta committed Oct 17, 2022
1 parent a5ef6c4 commit 28fb4a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LocaleNames.Test/GzipUtilsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class GzipUtilsTest
" sagittis, urna turpis tincidunt nunc, et posuere diam dui sed ex. Cras " +
"tincidunt volutpat dolor sit amet tristique. ";

public string LongString = new string(string.Join(" ", Enumerable.Repeat(InputString, 100)));
public string LongString = string.Join(" ", Enumerable.Repeat(InputString, 100));

[TestMethod]
public void CompressionDecompressionTest()
Expand Down
2 changes: 1 addition & 1 deletion src/LocaleNames/LocaleNames.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</ItemGroup>

<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard2.0'))">
<PackageReference Include="System.Text.Json" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="[4.6.0,)" />
</ItemGroup>

<Import Project="Resources.include" />
Expand Down

0 comments on commit 28fb4a9

Please sign in to comment.