Skip to content

Commit

Permalink
[Dep] Try to enable Wasdk 1.6 .
Browse files Browse the repository at this point in the history
  • Loading branch information
zhh135 committed Jul 14, 2024
1 parent e64c7b5 commit a216203
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 10 deletions.
3 changes: 2 additions & 1 deletion src/HyPlayer.App/App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<Product>HyPlayer</Product>
<UserSecretsId>3e757a82-9759-482b-851c-170ec2aa99dc</UserSecretsId>
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
<WindowsSdkPackageVersion>10.0.22621.35-preview</WindowsSdkPackageVersion>
</PropertyGroup>


Expand Down Expand Up @@ -59,7 +60,7 @@
<PackageReference Include="CommunityToolkit.WinUI.UI.Media" Version="7.1.2" />
<PackageReference Include="Depository" Version="2.1.0" />
<PackageReference Include="Humanizer" Version="2.14.1" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240627000" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.6.240531000-experimental1" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" Version="2.0.9" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
Expand Down
2 changes: 1 addition & 1 deletion src/HyPlayer.App/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Depository.Extensions;
using HyPlayer.Extensions.DependencyInjectionExtensions;
using HyPlayer.Extensions.Helpers;
using HyPlayer.Interfaces.Views;
using HyPlayer.Interfaces.Services;
using HyPlayer.PlayCore;
using HyPlayer.PlayCore.Abstraction;
using HyPlayer.Services;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Navigation;
using System;

namespace HyPlayer.Interfaces.Views;
namespace HyPlayer.Interfaces.Services;

public interface INavigationService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace HyPlayer.Interfaces.Views;
namespace HyPlayer.Interfaces.Services;

public interface IPageService
{
Expand Down
2 changes: 1 addition & 1 deletion src/HyPlayer.App/Services/NavigationService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using HyPlayer.Interfaces.Views;
using HyPlayer.Interfaces.Services;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media.Animation;
using Microsoft.UI.Xaml.Navigation;
Expand Down
2 changes: 1 addition & 1 deletion src/HyPlayer.App/Services/PageService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using HyPlayer.Interfaces.Views;
using HyPlayer.Interfaces.Services;
using HyPlayer.Views.Pages;
using System;

Expand Down
2 changes: 1 addition & 1 deletion src/HyPlayer.App/ViewModels/ShellViewModel.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using HyPlayer.Interfaces.Services;
using HyPlayer.Interfaces.ViewModels;
using HyPlayer.Interfaces.Views;

namespace HyPlayer.ViewModels
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Depository.Abstraction.Interfaces;
using Depository.Core;
using Depository.Extensions;
using HyPlayer.Interfaces.Views;
using HyPlayer.Interfaces.Services;
using HyPlayer.ViewModels;
using Microsoft.UI.Xaml.Controls;

Expand Down
1 change: 1 addition & 0 deletions src/HyPlayer.App/Views/Controls/Search/SearchBox.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using HyPlayer.Interfaces.Services;
using HyPlayer.Interfaces.Views;
using HyPlayer.ViewModels;
using HyPlayer.Views.Pages;
Expand Down
1 change: 1 addition & 0 deletions src/HyPlayer.App/Views/Pages/HomePage.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using AsyncAwaitBestPractices;
using HyPlayer.Interfaces.Services;
using HyPlayer.Interfaces.Views;
using HyPlayer.NeteaseProvider.Models;
using Microsoft.UI.Xaml;
Expand Down
1 change: 1 addition & 0 deletions src/HyPlayer.App/Views/Pages/ShellPage.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using HyPlayer.Interfaces.Services;
using HyPlayer.Interfaces.Views;
using HyPlayer.ViewModels;
using Microsoft.UI.Xaml;
Expand Down
2 changes: 1 addition & 1 deletion src/HyPlayer.App/Views/Window/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Depository.Abstraction.Interfaces;
using Depository.Core;
using Depository.Extensions;
using HyPlayer.Interfaces.Views;
using HyPlayer.Interfaces.Services;
using HyPlayer.ViewModels;
using HyPlayer.Views.Controls.Dialogs;
using HyPlayer.Views.Pages;
Expand Down

0 comments on commit a216203

Please sign in to comment.