SimpleToolkit.* packages replacement
All checks were successful
Build and publish app / Build and determine version (push) Successful in 5m54s
Build and publish app / Pack and publish (push) Successful in 2m39s

This commit is contained in:
2026-04-16 22:33:35 +02:00
Unverified
parent 61ff175896
commit 748dcf27ca
13 changed files with 13 additions and 16 deletions

View File

@@ -10,7 +10,7 @@ using VDownload.Core.ViewModels.Authentication;
using VDownload.Core.ViewModels.Home;
using VDownload.Core.ViewModels.Settings;
using VDownload.Services.UI.DictionaryResources;
using SimpleToolkit.UI.Models;
using MSEssentials.UI.Common.MVVM;
using VDownload.Core.ViewModels.About;
using VDownload.Core.ViewModels.Subscriptions;
using VDownload.Core.Strings;

View File

@@ -14,7 +14,7 @@ using VDownload.Models;
using VDownload.Services.Data.Settings;
using VDownload.Services.UI.StoragePicker;
using VDownload.Sources.Twitch.Configuration.Models;
using SimpleToolkit.MVVM;
using MSEssentials.UI.Common.MVVM;
using System.Text.RegularExpressions;
using VDownload.Services.Utility.Filename;
using VDownload.Services.UI.Dialogs;

View File

@@ -15,8 +15,7 @@
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="SimpleToolkit.MVVM" Version="1.7.8" />
<PackageReference Include="SimpleToolkit.UI.Models" Version="1.7.8" />
<PackageReference Include="MSEssentials.UI.Common.MVVM" Version="1.7.10" />
</ItemGroup>
<ItemGroup>

View File

@@ -7,7 +7,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:i="using:Microsoft.Xaml.Interactivity"
xmlns:ic="using:Microsoft.Xaml.Interactions.Core"
xmlns:cb="using:SimpleToolkit.UI.WinUI.Behaviors"
xmlns:cb="using:MSEssentials.UI.WinUI.Behaviors"
mc:Ignorable="d">
<Window.SystemBackdrop>
<MicaBackdrop Kind="Base"/>

View File

@@ -12,7 +12,7 @@
xmlns:ct="using:CommunityToolkit.WinUI"
xmlns:ctc="using:CommunityToolkit.WinUI.Controls"
xmlns:ctuc="using:CommunityToolkit.WinUI.UI.Controls"
xmlns:c="using:SimpleToolkit.UI.WinUI.Controls"
xmlns:c="using:MSEssentials.UI.WinUI.Controls"
mc:Ignorable="d"
Background="{ThemeResource ViewBackgroundColor}"
x:Name="Root">

View File

@@ -12,7 +12,7 @@
xmlns:ct="using:CommunityToolkit.WinUI"
xmlns:ctc="using:CommunityToolkit.WinUI.Controls"
xmlns:ctuc="using:CommunityToolkit.WinUI.UI.Controls"
xmlns:c="using:SimpleToolkit.UI.WinUI.Controls"
xmlns:c="using:MSEssentials.UI.WinUI.Controls"
mc:Ignorable="d"
Background="{ThemeResource ViewBackgroundColor}">

View File

@@ -24,8 +24,8 @@
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" Version="2.0.9" />
<PackageReference Include="SimpleToolkit.UI.WinUI.Behaviors" Version="1.7.8" />
<PackageReference Include="SimpleToolkit.UI.WinUI.Controls" Version="1.7.8" />
<PackageReference Include="MSEssentials.UI.WinUI.Behaviors" Version="1.7.10" />
<PackageReference Include="MSEssentials.UI.WinUI.Controls" Version="1.7.10" />
</ItemGroup>
<ItemGroup>

View File

@@ -2,7 +2,6 @@
using Microsoft.UI.Xaml;
using Microsoft.Windows.AppNotifications;
using Microsoft.Windows.AppNotifications.Builder;
using SimpleToolkit.UI.WinUI.Helpers;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -71,7 +70,7 @@ namespace VDownload.Services.UI.Notifications
#region PRIVATE METHODS
private void NotificationInvoked(AppNotificationManager sender, AppNotificationActivatedEventArgs args) => WindowHelper.ShowWindow(_window);
private void NotificationInvoked(AppNotificationManager sender, AppNotificationActivatedEventArgs args) => _window.AppWindow.Show(true);
#endregion
}

View File

@@ -14,7 +14,6 @@
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
<PackageReference Include="SimpleToolkit.UI.WinUI.Helpers" Version="1.7.8" />
</ItemGroup>
<ItemGroup>

View File

@@ -1,4 +1,4 @@
using SimpleToolkit.Extensions;
using MSEssentials.Extensions;
using System;
using System.Collections.Generic;
using System.Globalization;

View File

@@ -7,7 +7,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SimpleToolkit.Extensions" Version="1.7.11" />
<PackageReference Include="MSEssentials.Extensions" Version="1.7.13" />
</ItemGroup>
<ItemGroup>

View File

@@ -3,7 +3,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:v="using:VDownload.Core.Views"
xmlns:lt="using:SimpleToolkit.UI.WinUI.Converters"
xmlns:lt="using:MSEssentials.UI.WinUI.Converters"
xmlns:ct="using:CommunityToolkit.WinUI.Converters">
<v:ViewModelToViewConverter x:Key="ViewModelToViewConverter"/>

View File

@@ -174,7 +174,7 @@
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
<PackageReference Include="SimpleToolkit.UI.WinUI.Converters" Version="1.7.8" />
<PackageReference Include="MSEssentials.UI.WinUI.Converters" Version="1.7.10" />
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>