From 38caa94f1a7f64aa35bda451600ead7c12135362 Mon Sep 17 00:00:00 2001 From: "dependencyupdates[bot]" <218638057+dependencyupdates[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 09:24:02 +0000 Subject: [PATCH 1/2] Update dependency SimpleExec to v13 --- src/Tests/Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/Tests.csproj b/src/Tests/Tests.csproj index fe99ad1..e9a9000 100644 --- a/src/Tests/Tests.csproj +++ b/src/Tests/Tests.csproj @@ -11,7 +11,7 @@ - + From 435cae374604d1a32347a09a3ffe854d3ab6279e Mon Sep 17 00:00:00 2001 From: Brandon Ording Date: Mon, 5 Jan 2026 11:43:41 -0500 Subject: [PATCH 2/2] React to API changes --- src/Tests/DotNetTemplatesHelper.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tests/DotNetTemplatesHelper.cs b/src/Tests/DotNetTemplatesHelper.cs index e69f9b9..e495264 100644 --- a/src/Tests/DotNetTemplatesHelper.cs +++ b/src/Tests/DotNetTemplatesHelper.cs @@ -14,7 +14,7 @@ public static class DotNetTemplatesHelper public static async Task<(string StandardOutput, string StandardError)> ExecuteNew(string parameters, CancellationToken cancellationToken = default) { - var (stdout, stderr) = await Command.ReadAsync(dotNetCli, "new " + parameters, cancellationToken: cancellationToken).ConfigureAwait(false); + var (stdout, stderr) = await Command.ReadAsync(dotNetCli, "new " + parameters, ct: cancellationToken).ConfigureAwait(false); Console.WriteLine(stdout); if (!string.IsNullOrWhiteSpace(stderr)) @@ -65,12 +65,12 @@ static string FormatParameters(Dictionary parameters) public static async Task Build(string projectDirectory, CancellationToken cancellationToken = default) { var projectFile = Directory.EnumerateFiles(projectDirectory, "*.csproj").Single(); - _ = await Command.ReadAsync(dotNetCli, $" build {projectFile}", cancellationToken: cancellationToken).ConfigureAwait(false); + _ = await Command.ReadAsync(dotNetCli, $" build {projectFile}", ct: cancellationToken).ConfigureAwait(false); } public static async Task Restore(string projectDirectory, CancellationToken cancellationToken = default) { var projectFile = Directory.EnumerateFiles(projectDirectory, "*.csproj").Single(); - _ = await Command.ReadAsync(dotNetCli, $" restore {projectFile}", cancellationToken: cancellationToken).ConfigureAwait(false); + _ = await Command.ReadAsync(dotNetCli, $" restore {projectFile}", ct: cancellationToken).ConfigureAwait(false); } } \ No newline at end of file