Skip to content

Commit

Permalink
Fix NuGet Package Security Issue
Browse files Browse the repository at this point in the history
When building dotnet is reporting the following security vulnerabilities.

```
error NU1904: Warning As Error: Package 'NuGet.Packaging' 6.7.0 has a known critical severity vulnerability, GHSA-68w7-72jg-6qpp
Warning As Error: Package 'System.Formats.Asn1' 6.0.0 has a known high severity vulnerability, GHSA-447r-wph3-92pm
```

The Cake packages have not been updated so add references to the latest stable packages manually.
  • Loading branch information
dellis1972 committed Aug 15, 2024
1 parent 8f5f4ca commit 9e4741b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions MonoGame.Tool.BuildScripts.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cake.FileHelpers" Version="6.1.3" />
<PackageReference Include="Cake.Frosting" Version="3.1.0" />
<PackageReference Include="Cake.FileHelpers" Version="7.0.0" />
<PackageReference Include="Cake.Frosting" Version="4.0.0" />
<PackageReference Include="NuGet.Packaging" Version="6.10.1" />
<PackageReference Include="System.Formats.Asn1" Version="8.0.1" />
</ItemGroup>

</Project>

0 comments on commit 9e4741b

Please sign in to comment.