Skip to content

Commit

Permalink
Update NuGet packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Jun 5, 2023
1 parent 293e6d4 commit 2086a53
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 25 deletions.
8 changes: 4 additions & 4 deletions Onova.Tests/Onova.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CliWrap" Version="3.6.2" />
<PackageReference Include="CliWrap" Version="3.6.3" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="GitHubActionsTestLogger" Version="2.2.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="GitHubActionsTestLogger" Version="2.3.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.1" />
<PackageReference Include="Mono.Cecil" Version="0.11.5" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" PrivateAssets="all" />
<PackageReference Include="coverlet.collector" Version="3.2.0" PrivateAssets="all" />
<PackageReference Include="coverlet.collector" Version="6.0.0" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Onova.Updater/Onova.Updater.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
<PackageReference Include="PolyShim" Version="1.3.0" PrivateAssets="all" />
<PackageReference Include="PolyShim" Version="1.5.0" PrivateAssets="all" />
</ItemGroup>

</Project>
4 changes: 1 addition & 3 deletions Onova.Updater/Utils/Extensions/DisposableExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ public static void DisposeAll(this IEnumerable<IDisposable> disposables)

if (exceptions?.Any() == true)
{
// TODO: No aggregate exception on .NET 3.5
// throw new AggregateException(exceptions);
throw new Exception("An error occurred while disposing of one or more objects.", exceptions.First());
throw new AggregateException(exceptions);
}
}
}
16 changes: 0 additions & 16 deletions Onova.Updater/Utils/Extensions/StreamExtensions.cs

This file was deleted.

2 changes: 1 addition & 1 deletion Onova/Onova.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.2" PrivateAssets="all" />
<PackageReference Include="Fody" Version="6.7.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
<PackageReference Include="PolyShim" Version="1.3.0" PrivateAssets="all" />
<PackageReference Include="PolyShim" Version="1.5.0" PrivateAssets="all" />
<PackageReference Include="System.Text.Json" Version="7.0.2" Condition="'$(TargetFramework)' != 'netcoreapp3.0'" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" Condition="'$(TargetFramework)' == 'net462'" />
</ItemGroup>
Expand Down

0 comments on commit 2086a53

Please sign in to comment.