Skip to content

Commit

Permalink
Update the dependencies
Browse files Browse the repository at this point in the history
Cake is still using 6.7.0 which seems to have a security warning, and if we use a later version it will not load.

This is the latests, patched version that is lower than cake.
  • Loading branch information
mattleibow committed Jul 22, 2024
1 parent 249051a commit 2e27bc9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Mono.ApiTools.ApiCompat/Mono.ApiTools.ApiCompat.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;net6.0;net8.0</TargetFrameworks>
<AssemblyName>Mono.ApiTools.ApiCompat</AssemblyName>
<RootNamespace>Mono.ApiTools</RootNamespace>
<LangVersion>latest</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Mono.ApiTools.ApiDiff/Mono.ApiTools.ApiDiff.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;net6.0;net8.0</TargetFrameworks>
<AssemblyName>Mono.ApiTools.ApiDiff</AssemblyName>
<RootNamespace>Mono.ApiTools</RootNamespace>
<LangVersion>latest</LangVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;net6.0;net8.0</TargetFrameworks>
<AssemblyName>Mono.ApiTools.ApiDiffFormatted</AssemblyName>
<RootNamespace>Mono.ApiTools</RootNamespace>
<LangVersion>latest</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Mono.ApiTools.ApiInfo/Mono.ApiTools.ApiInfo.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;net6.0;net8.0</TargetFrameworks>
<AssemblyName>Mono.ApiTools.ApiInfo</AssemblyName>
<RootNamespace>Mono.ApiTools</RootNamespace>
<LangVersion>latest</LangVersion>
Expand Down
6 changes: 3 additions & 3 deletions Mono.ApiTools.NuGetDiff/Mono.ApiTools.NuGetDiff.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;net6.0;net8.0</TargetFrameworks>
<AssemblyName>Mono.ApiTools.NuGetDiff</AssemblyName>
<RootNamespace>Mono.ApiTools</RootNamespace>
<LangVersion>latest</LangVersion>
Expand Down Expand Up @@ -32,8 +32,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="NuGet.Packaging" Version="6.9.1" />
<PackageReference Include="NuGet.Protocol" Version="6.9.1" />
<PackageReference Include="NuGet.Packaging" Version="6.6.2" />
<PackageReference Include="NuGet.Protocol" Version="6.6.2" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions api-tools/api-tools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NuGet.Packaging" Version="6.9.1" />
<PackageReference Include="NuGet.Protocol" Version="6.9.1" />
<PackageReference Include="NuGet.Packaging" Version="6.6.2" />
<PackageReference Include="NuGet.Protocol" Version="6.6.2" />
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
<PackageReference Include="Mono.Cecil" Version="0.11.5" />
<PackageReference Include="ILRepack.Lib" Version="2.0.18" NoWarn="NU1701" />
Expand Down

0 comments on commit 2e27bc9

Please sign in to comment.