Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SKProCH committed Aug 9, 2024
1 parent 6af2b54 commit 18e3ebe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions YandexMusicResolver.Tests/YandexMusicAuthServiceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
namespace YandexMusicResolver.Tests {
public class YandexMusicAuthServiceTest : YandexTestBase {
[Fact]
public void AuthFailure() {
Assert.ThrowsAsync<InvalidCredentialException>(async () => {
public async System.Threading.Tasks.Task AuthFailure() {
await Assert.ThrowsAsync<InvalidCredentialException>(async () => {
await new YandexMusicAuthService(new HttpClient()).LoginAsync("Invalid", "Invalid");
});
}
Expand Down
10 changes: 5 additions & 5 deletions YandexMusicResolver.Tests/YandexMusicResolver.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Moq.AutoMock" Version="3.5.0" />
<PackageReference Include="Moq.Contrib.HttpClient" Version="1.4.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
4 changes: 2 additions & 2 deletions YandexMusicResolver/YandexMusicResolver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="7.0.2" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 18e3ebe

Please sign in to comment.