Skip to content

Commit c28bd94

Browse files
authored
Merge pull request #234 from devlead/renovate/devlead.console-2025.x
Update dependency Devlead.Console to 2025.11.4.431
2 parents 9dbcd28 + 73e66e0 commit c28bd94

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/ARI.Tests/Unit/Commands/InventoryCommandTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ public async Task ExecuteAsync(bool skipTenantOverview, bool includeSiteApplicat
5959
{
6060
ExitCode = await command.ExecuteAsync(
6161
context,
62-
settings
62+
settings,
63+
CancellationToken.None
6364
),
6465
Output = cakeContext.FileSystem.FromDirectoryPath(settings.OutputPath)
6566
};

src/ARI/ARI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<PackageReference Include="System.Linq.Async" Version="6.0.3" />
4545
<PackageReference Include="Cake.Bridge.DependencyInjection" Version="2025.11.17.398" />
4646
<PackageReference Include="Cake.Common" Version="6.0.0" />
47-
<PackageReference Include="Devlead.Console" Version="2025.10.15.396" />
47+
<PackageReference Include="Devlead.Console" Version="2025.11.4.431" />
4848
</ItemGroup>
4949

5050
<ItemGroup>

src/ARI/Commands/InventoryCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class InventoryCommand : AsyncCommand<InventorySettings>
2222
{ "Has-tags", "false" }
2323
};
2424

25-
public override async Task<int> ExecuteAsync(CommandContext context, InventorySettings settings)
25+
public override async Task<int> ExecuteAsync(CommandContext context, InventorySettings settings, CancellationToken cancellationToken)
2626
{
2727
var sw = System.Diagnostics.Stopwatch.StartNew();
2828
var modified = DateTimeOffset.UtcNow;

0 commit comments

Comments
 (0)