Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!-- Copyright (c) Files Community. Licensed under the MIT License. -->
<!-- Copyright (c) Files Community. Licensed under the MIT License. -->
<Project>
<PropertyGroup>
<TargetFrameworkVersion>net9.0</TargetFrameworkVersion>
<TargetWindowsVersion>10.0.22621.0</TargetWindowsVersion>
<TargetWindowsVersion>10.0.26100.0</TargetWindowsVersion>
<MinimalWindowsVersion>10.0.19041.0</MinimalWindowsVersion>
<WindowsSdkPackageVersion>10.0.26100.67-preview</WindowsSdkPackageVersion>
<WindowsTargetFramework>$(TargetFrameworkVersion)-windows$(TargetWindowsVersion)</WindowsTargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<PackageVersion Include="Appium.WebDriver" Version="4.4.5" />
<PackageVersion Include="Axe.Windows" Version="2.4.2" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageVersion Include="MSTest.TestAdapter" Version="3.10.3" />
<PackageVersion Include="MSTest.TestAdapter" Version="3.10.4" />
<PackageVersion Include="MSTest.TestFramework" Version="3.10.4" />
<PackageVersion Include="Dongle.GuidRVAGen" Version="1.0.5" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Files.App (Package)/Files.Package.wapproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>8f60fd8e-1921-47d6-97b0-d26d7b3a4999</ProjectGuid>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
<TargetPlatformVersion>10.0.26100.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<AssetTargetFallback>net9.0-windows$(TargetPlatformVersion);$(AssetTargetFallback)</AssetTargetFallback>
<DefaultLanguage>en-US</DefaultLanguage>
Expand Down
1 change: 1 addition & 0 deletions src/Files.App.Server/Files.App.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@
<ProjectReference Include="..\Files.Shared\Files.Shared.csproj" />
</ItemGroup>

<Import Project="..\Satori.targets" Condition=" '$(Platform)' != 'x86' " />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class CompressIntoArchiveAction : BaseCompressArchiveAction
{
public override string Label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class CompressIntoSevenZipAction : BaseCompressArchiveAction
{
public override string Label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class CompressIntoZipAction : BaseCompressArchiveAction
{
public override string Label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

namespace Files.App.Actions
{
internal sealed partial class DecompressArchive : BaseDecompressArchiveAction
[GeneratedRichCommand]
internal sealed partial class DecompressArchiveAction : BaseDecompressArchiveAction
{
public override string Label
=> Strings.ExtractFiles.GetLocalizedResource();
Expand All @@ -22,7 +23,7 @@ public override string Description
public override HotKey HotKey
=> new(Keys.E, KeyModifiers.Ctrl);

public DecompressArchive()
public DecompressArchiveAction()
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@

namespace Files.App.Actions
{
internal sealed partial class DecompressArchiveHere : BaseDecompressArchiveAction
[GeneratedRichCommand]
internal sealed partial class DecompressArchiveHereAction : BaseDecompressArchiveAction
{
public override string Label
=> Strings.ExtractHere.GetLocalizedResource();

public override string Description
=> Strings.DecompressArchiveHereDescription.GetLocalizedFormatResource(context.SelectedItems.Count);

public DecompressArchiveHere()
public DecompressArchiveHereAction()
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

namespace Files.App.Actions
{
internal sealed partial class DecompressArchiveHereSmart : BaseDecompressArchiveAction
[GeneratedRichCommand]
internal sealed partial class DecompressArchiveHereSmartAction : BaseDecompressArchiveAction
{
public override string Label
=> Strings.ExtractHereSmart.GetLocalizedResource();
Expand All @@ -14,7 +15,7 @@ public override string Description
public override HotKey HotKey
=> new(Keys.E, KeyModifiers.CtrlShift);

public DecompressArchiveHereSmart()
public DecompressArchiveHereSmartAction()
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class DecompressArchiveToChildFolderAction : BaseDecompressArchiveAction
{
public override string Label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class SetAsAppBackgroundAction : BaseSetAsAction
{
private readonly IAppearanceSettingsService AppearanceSettingsService = Ioc.Default.GetRequiredService<IAppearanceSettingsService>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class SetAsLockscreenBackgroundAction : BaseSetAsAction
{
private readonly IWindowsWallpaperService WindowsWallpaperService = Ioc.Default.GetRequiredService<IWindowsWallpaperService>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class SetAsSlideshowBackgroundAction : BaseSetAsAction
{
private readonly IWindowsWallpaperService WindowsWallpaperService = Ioc.Default.GetRequiredService<IWindowsWallpaperService>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class SetAsWallpaperBackgroundAction : BaseSetAsAction
{
public override string Label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class RotateLeftAction : BaseRotateAction
{
public override string Label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class RotateRightAction : BaseRotateAction
{
public override string Label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class InstallCertificateAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
1 change: 1 addition & 0 deletions src/Files.App/Actions/Content/Install/InstallFontAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class InstallFontAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class InstallInfDriverAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
1 change: 1 addition & 0 deletions src/Files.App/Actions/Content/PlayAllAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class PlayAllAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class LaunchPreviewPopupAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
1 change: 1 addition & 0 deletions src/Files.App/Actions/Content/RefreshItemsAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class RefreshItemsAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
1 change: 1 addition & 0 deletions src/Files.App/Actions/Content/Run/RunAsAdminAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class RunAsAdminAction : BaseRunAsAction
{
private readonly IContentPageContext ContentPageContext = Ioc.Default.GetRequiredService<IContentPageContext>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class RunAsAnotherUserAction : BaseRunAsAction
{
private readonly IContentPageContext ContentPageContext = Ioc.Default.GetRequiredService<IContentPageContext>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class RunWithPowershellAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed class ClearSelectionAction : IAction
{
private readonly IContentPageContext context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed class InvertSelectionAction : IAction
{
private readonly IContentPageContext context;
Expand Down
1 change: 1 addition & 0 deletions src/Files.App/Actions/Content/Selection/SelectAllAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed class SelectAllAction : IAction
{
private readonly IContentPageContext context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed class ToggleSelectAction : IAction
{
public string Label
Expand Down
1 change: 1 addition & 0 deletions src/Files.App/Actions/Content/Share/ShareItemAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace Files.App.Actions
{
[GeneratedRichCommand]
internal sealed partial class ShareItemAction : ObservableObject, IAction
{
private readonly IContentPageContext context;
Expand Down
5 changes: 3 additions & 2 deletions src/Files.App/Actions/Content/Tags/OpenAllTaggedActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

namespace Files.App.Actions
{
sealed partial class OpenAllTaggedActions : ObservableObject, IAction
[GeneratedRichCommand]
sealed partial class OpenAllTaggedAction : ObservableObject, IAction
{
private readonly IContentPageContext _pageContext;

Expand All @@ -22,7 +23,7 @@ public RichGlyph Glyph
_pageContext.ShellPage is not null &&
_tagsContext.TaggedItems.Any();

public OpenAllTaggedActions()
public OpenAllTaggedAction()
{
_pageContext = Ioc.Default.GetRequiredService<IContentPageContext>();
_tagsContext = Ioc.Default.GetRequiredService<ITagsContext>();
Expand Down
Loading