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
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<PackageVersion Include="Roslynator.Analyzers" Version="4.15.0"/>
<PackageVersion Include="Roslynator.Formatting.Analyzers" Version="4.15.0"/>
<PackageVersion Include="SonarAnalyzer.CSharp" Version="10.22.0.136894"/>
<PackageVersion Include="Spectre.Console" Version="0.54.0"/>
<PackageVersion Include="Spectre.Console.Cli" Version="0.53.1"/>
<PackageVersion Include="Spectre.Console.Testing" Version="0.54.0"/>
<PackageVersion Include="Spectre.Console" Version="0.55.0"/>
<PackageVersion Include="Spectre.Console.Cli" Version="0.55.0"/>
<PackageVersion Include="Spectre.Console.Testing" Version="0.55.0"/>
<PackageVersion Include="xunit" Version="2.9.3"/>
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5"/>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ProjGraph.Cli/Commands/ClassDiagramCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public override ValidationResult Validate()
/// A task that represents the asynchronous operation. The task result contains an integer
/// indicating the exit code of the command (0 for success, 1 for failure).
/// </returns>
public override async Task<int> ExecuteAsync(
protected override async Task<int> ExecuteAsync(
CommandContext context,
Settings settings,
CancellationToken cancellationToken)
Expand Down
2 changes: 1 addition & 1 deletion src/ProjGraph.Cli/Commands/ErdCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public override ValidationResult Validate()
/// <returns>
/// An integer representing the exit code of the command. Returns 0 if successful, 1 otherwise.
/// </returns>
public override async Task<int> ExecuteAsync(
protected override async Task<int> ExecuteAsync(
CommandContext context,
Settings settings,
CancellationToken cancellationToken)
Expand Down
2 changes: 1 addition & 1 deletion src/ProjGraph.Cli/Commands/StatsCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public override ValidationResult Validate()
}

/// <inheritdoc />
public override async Task<int> ExecuteAsync(CommandContext context, Settings settings,
protected override async Task<int> ExecuteAsync(CommandContext context, Settings settings,
CancellationToken cancellationToken)
{
try
Expand Down
2 changes: 1 addition & 1 deletion src/ProjGraph.Cli/Commands/VisualizeCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ NormalizedFormat is not FormatTree &&
/// <returns>
/// An integer representing the exit code of the command. Returns 0 if successful, 1 otherwise.
/// </returns>
public override async Task<int> ExecuteAsync(
protected override async Task<int> ExecuteAsync(
CommandContext context,
Settings settings,
CancellationToken cancellationToken)
Expand Down
Loading