Fix vulnerability with Newtonsoft.Json; Update Console project to .NET 8

This commit is contained in:
Jeddunk 2023-12-25 13:33:07 +01:00
parent 45608312c6
commit c1fc8a5d6f
2 changed files with 9 additions and 9 deletions

View File

@ -22,7 +22,7 @@ The Steam API is not officially available or documented. So, all data in this li
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>

View File

@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\SteamStorefrontAPI\SteamStorefrontAPI.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SteamStorefrontAPI\SteamStorefrontAPI.csproj" />
</ItemGroup>
</Project>