Skip to content

Commit

Permalink
[Chores] Update Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Raspberry-Monster committed Jul 13, 2024
1 parent c8fa9ef commit f225527
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Depository" Version="2.0.0-rev1" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231219000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.2428" />
<PackageReference Include="Depository" Version="2.1.0" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240627000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ private void OnPositionNotifyTimerElapsed(object sender, System.Timers.ElapsedEv
}
var value = MasterTicket.PlaybackMediaSourceInputNode.Position.TotalMilliseconds;
var notification = new AudioGraphPlaybackPositionChangedNotification(value);
_notificationHub.PublishNotificationAsync(notification);
_notificationHub.PublishNotificationAsync(notification as PlaybackPositionChangedNotification);
}

public Task SetMasterTicketAsync(AudioGraphTicket graphTicket)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Depository" Version="2.0.0-rev1" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231219000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.2428" />
<PackageReference Include="Depository" Version="2.1.0" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240627000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions HyPlayer.PlayCore.Tests/HyPlayer.PlayCore.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<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="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion HyPlayer.PlayCore.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HyPlayer.PlayCore.Benchmark
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HyPlayer.PlayCore.Implementation.AudioGraphService", "HyPlayer.PlayCore.Implementation.AudioGraph\HyPlayer.PlayCore.Implementation.AudioGraphService.csproj", "{0666E0F5-5AEE-4D0B-989A-53A17D08D104}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HyPlayer.PlayCore.Demo.AudioGraph.WinUI3", "HyPlayer.PlayCore.Demo.AudioGraph.WinUI3\HyPlayer.PlayCore.Demo.AudioGraph.WinUI3.csproj", "{099B9FAB-9D05-41E7-88FE-38665110EF4B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HyPlayer.PlayCore.Demo.AudioGraph.WinUI3", "HyPlayer.PlayCore.Demo.AudioGraph.WinUI3\HyPlayer.PlayCore.Demo.AudioGraph.WinUI3.csproj", "{099B9FAB-9D05-41E7-88FE-38665110EF4B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
6 changes: 3 additions & 3 deletions HyPlayer.PlayCore/HyPlayer.PlayCore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>default</LangVersion>
Expand All @@ -18,8 +18,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="AsyncAwaitBestPractices" Version="7.0.0" />
<PackageReference Include="Depository.Abstraction" Version="2.0.0" />
<PackageReference Include="AsyncAwaitBestPractices" Version="8.0.0" />
<PackageReference Include="Depository.Abstraction" Version="2.1.0" />
</ItemGroup>

</Project>

0 comments on commit f225527

Please sign in to comment.