Skip to content

Commit 9dac85e

Browse files
committed
dependencies: update json.net to system.text.json
Update global reference to Json.NET (Newtonsoft.Json) to System.Text.Json. Note that this is only required for .NET Framework and can be removed when GCM migrates off it.
1 parent 5d4a112 commit 9dac85e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Directory.Build.props

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@
2626
<GenerateWindowsAppManifest Condition="'$(GenerateWindowsAppManifest)' == '' AND '$(OSPlatform)' == 'windows' AND '$(_IsExeProject)' == 'true'">true</GenerateWindowsAppManifest>
2727
</PropertyGroup>
2828

29-
<ItemGroup>
30-
<!-- Workaround https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/issues/4108 -->
31-
<PackageReference Include="Newtonsoft.Json">
32-
<Version>13.0.1</Version>
29+
<ItemGroup Condition = "'$(TargetFramework)' == 'net472'">
30+
<PackageReference Include="System.Text.Json">
31+
<Version>7.0.2</Version>
3332
</PackageReference>
3433
</ItemGroup>
3534

0 commit comments

Comments
 (0)