|
31 | 31 | <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(DotNet3Version)" /> |
32 | 32 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="3.2.1" /> |
33 | 33 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="3.2.1" /> |
| 34 | + |
| 35 | + <!-- Due to a CVE in System.Text.Json we explicitly reference the latest version of System.Text.Json --> |
| 36 | + <PackageReference Include="System.Text.Json" Version="6.0.9" /> |
34 | 37 | </ItemGroup> |
35 | 38 |
|
36 | 39 | <ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> |
|
41 | 44 | <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(DotNet5Version)" /> |
42 | 45 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(DotNet5Version)" /> |
43 | 46 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="$(DotNet5Version)" /> |
| 47 | + |
| 48 | + <!-- Due to a CVE in System.Text.Json we explicitly reference the latest version of System.Text.Json --> |
| 49 | + <PackageReference Include="System.Text.Json" Version="6.0.9" /> |
44 | 50 | </ItemGroup> |
45 | 51 |
|
46 | 52 | <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> |
|
52 | 58 | <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(DotNet6Version)" /> |
53 | 59 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(DotNet6Version)" /> |
54 | 60 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="$(DotNet6Version)" /> |
| 61 | + |
| 62 | + <!-- Due to a CVE in System.Text.Json we explicitly reference the latest version of System.Text.Json --> |
| 63 | + <PackageReference Include="System.Text.Json" Version="6.0.9" /> |
55 | 64 | </ItemGroup> |
56 | 65 |
|
57 | 66 | <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> |
|
63 | 72 | <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(DotNet7Version)" /> |
64 | 73 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(DotNet7Version)" /> |
65 | 74 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="$(DotNet7Version)" /> |
| 75 | + |
| 76 | + <!-- Due to a CVE in System.Text.Json we explicitly reference the latest version of System.Text.Json --> |
| 77 | + <PackageReference Include="System.Text.Json" Version="8.0.4" /> |
66 | 78 | </ItemGroup> |
67 | 79 |
|
68 | 80 | <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
|
74 | 86 | <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(DotNet8Version)" /> |
75 | 87 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(DotNet8Version)" /> |
76 | 88 | <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="$(DotNet8Version)" /> |
| 89 | + |
| 90 | + <!-- Due to a CVE in System.Text.Json we explicitly reference the latest version of System.Text.Json --> |
| 91 | + <PackageReference Include="System.Text.Json" Version="8.0.4" /> |
77 | 92 | </ItemGroup> |
78 | 93 |
|
79 | 94 | <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> |
|
0 commit comments