mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
chore: enable .NET analyzers
This commit is contained in:
parent
c62e2684fc
commit
17e99dd0c2
3 changed files with 84 additions and 74 deletions
|
@ -6,7 +6,7 @@ using Spectre.Console.Cli;
|
|||
namespace ScriptLauncher;
|
||||
|
||||
internal sealed class RootCommand : AsyncCommand<RootCommandSettings>
|
||||
{
|
||||
{
|
||||
private const int Failure = 1;
|
||||
private const int Success = 0;
|
||||
|
||||
|
@ -58,9 +58,11 @@ internal sealed class RootCommand : AsyncCommand<RootCommandSettings>
|
|||
|
||||
try
|
||||
{
|
||||
await ScriptExecutor.ExecAsync(scripts, settings.Elevated);
|
||||
await ScriptExecutor.ExecAsync(scripts, settings.Elevated).ConfigureAwait(false);
|
||||
}
|
||||
catch (Exception ex) when (ex is Win32Exception or InvalidOperationException or PlatformNotSupportedException)
|
||||
catch (Exception ex)
|
||||
when (ex is Win32Exception or InvalidOperationException or PlatformNotSupportedException
|
||||
)
|
||||
{
|
||||
AnsiConsole.Markup($"[red]{ex.Message}[/]");
|
||||
return Failure;
|
||||
|
@ -68,10 +70,10 @@ internal sealed class RootCommand : AsyncCommand<RootCommandSettings>
|
|||
|
||||
return Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal class RootCommandSettings : CommandSettings
|
||||
{
|
||||
internal class RootCommandSettings : CommandSettings
|
||||
{
|
||||
[Description("Comma separated list of script extensions")]
|
||||
[CommandOption("-x|--extensions")]
|
||||
public string? Extensions { get; init; }
|
||||
|
@ -95,4 +97,4 @@ internal sealed class RootCommand : AsyncCommand<RootCommandSettings>
|
|||
[Description("Starting directory (Default: .)")]
|
||||
[CommandArgument(0, "<path>")]
|
||||
public string Directory { get; init; } = ".";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
using System.Globalization;
|
||||
using System.Text;
|
||||
using Spectre.Console;
|
||||
|
||||
|
@ -16,12 +17,18 @@ internal static class PromptConstructor
|
|||
|
||||
if (!brief)
|
||||
{
|
||||
builder.Append($"[blue]{info.DirectoryName}{Path.DirectorySeparatorChar}[/]");
|
||||
builder.Append(
|
||||
CultureInfo.InvariantCulture,
|
||||
$"[blue]{info.DirectoryName}{Path.DirectorySeparatorChar}[/]"
|
||||
);
|
||||
}
|
||||
|
||||
builder
|
||||
.Append($"[orangered1]{Path.GetFileNameWithoutExtension(info.Name)}[/]")
|
||||
.Append($"[greenyellow]{info.Extension}[/]");
|
||||
.Append(
|
||||
CultureInfo.InvariantCulture,
|
||||
$"[orangered1]{Path.GetFileNameWithoutExtension(info.Name)}[/]"
|
||||
)
|
||||
.Append(CultureInfo.InvariantCulture, $"[greenyellow]{info.Extension}[/]");
|
||||
|
||||
return builder.ToString();
|
||||
}
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<Version>0.1.3</Version>
|
||||
<AnalysisMode>All</AnalysisMode>
|
||||
<Version>0.1.4</Version>
|
||||
<PackAsTool>true</PackAsTool>
|
||||
<Description>Tool to find and exec shell scripts</Description>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
|
|
Loading…
Add table
Reference in a new issue