Skip to content

Commit 75b55a9

Browse files
JamesNKapolcyn
authored andcommitted
Fix System.Text.Json vulnerability warning (grpc#2556)
1 parent 83c34c6 commit 75b55a9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Directory.Packages.props

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
<PackageVersion Include="System.Memory" Version="4.5.3" />
8383
<PackageVersion Include="System.Net.Http.WinHttpHandler" Version="8.0.0" />
8484
<PackageVersion Include="System.Security.Principal.Windows" Version="5.0.0" />
85+
<PackageVersion Include="System.Text.Json" Version="6.0.10" />
8586
<PackageVersion Include="System.Threading.Channels" Version="4.6.0" />
8687
</ItemGroup>
8788
</Project>

src/dotnet-grpc/dotnet-grpc.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Command line tool for gRPC projects</Description>
44
<PackageTags>gRPC RPC CLI</PackageTags>
@@ -26,6 +26,7 @@
2626
<PackageReference Include="Microsoft.Build.Locator" />
2727
<PackageReference Include="System.CommandLine.Rendering" />
2828
<PackageReference Include="System.Security.Principal.Windows" />
29+
<PackageReference Include="System.Text.Json" />
2930
<PackageReference Include="Microsoft.Win32.Registry" />
3031
</ItemGroup>
3132

0 commit comments

Comments
 (0)