Skip to content

Commit 761c342

Browse files
committed
Regenerate
1 parent 743ed1f commit 761c342

File tree

56 files changed

+3669
-719
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+3669
-719
lines changed

source/Nuke.Common/Tools/AzureSignTool/AzureSignTool.Generated.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public static partial class AzureSignToolTasks
3737
/// <p>Azure Sign Tool is similar to <c>signtool</c> in the Windows SDK, with the major difference being that it uses Azure Key Vault for performing the signing process. The usage is like <c>signtool</c>, except with a limited set of options for signing and options for authenticating to Azure Key Vault.</p>
3838
/// <p>For more details, visit the <a href="https://github.com/vcsjones/AzureSignTool">official website</a>.</p>
3939
/// </summary>
40-
public static IReadOnlyCollection<Output> AzureSignTool(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null)
40+
public static IReadOnlyCollection<Output> AzureSignTool(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null, Action<OutputType, string> customLogger = null)
4141
{
42-
using var process = ProcessTasks.StartProcess(AzureSignToolPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, AzureSignToolLogger, outputFilter);
42+
using var process = ProcessTasks.StartProcess(AzureSignToolPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, customLogger ?? AzureSignToolLogger, outputFilter);
4343
process.AssertZeroExitCode();
4444
return process.Output;
4545
}
@@ -168,7 +168,7 @@ public partial class AzureSignToolSettings : ToolSettings
168168
/// Path to the AzureSignTool executable.
169169
/// </summary>
170170
public override string ProcessToolPath => base.ProcessToolPath ?? AzureSignToolTasks.AzureSignToolPath;
171-
public override Action<OutputType, string> ProcessCustomLogger => AzureSignToolTasks.AzureSignToolLogger;
171+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? AzureSignToolTasks.AzureSignToolLogger;
172172
/// <summary>
173173
/// A fully qualified URL of the key vault with the certificate that will be used for signing. An example value might be <c>https://my-vault.vault.azure.net</c>.
174174
/// </summary>

source/Nuke.Common/Tools/BenchmarkDotNet/BenchmarkDotNet.Generated.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public static partial class BenchmarkDotNetTasks
3737
/// <p>Powerful .NET library for benchmarking</p>
3838
/// <p>For more details, visit the <a href="https://benchmarkdotnet.org/">official website</a>.</p>
3939
/// </summary>
40-
public static IReadOnlyCollection<Output> BenchmarkDotNet(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null)
40+
public static IReadOnlyCollection<Output> BenchmarkDotNet(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null, Action<OutputType, string> customLogger = null)
4141
{
42-
using var process = ProcessTasks.StartProcess(BenchmarkDotNetPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, BenchmarkDotNetLogger, outputFilter);
42+
using var process = ProcessTasks.StartProcess(BenchmarkDotNetPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, customLogger ?? BenchmarkDotNetLogger, outputFilter);
4343
process.AssertZeroExitCode();
4444
return process.Output;
4545
}
@@ -246,7 +246,7 @@ public partial class BenchmarkDotNetSettings : ToolSettings
246246
/// Path to the BenchmarkDotNet executable.
247247
/// </summary>
248248
public override string ProcessToolPath => base.ProcessToolPath ?? BenchmarkDotNetTasks.BenchmarkDotNetPath;
249-
public override Action<OutputType, string> ProcessCustomLogger => BenchmarkDotNetTasks.BenchmarkDotNetLogger;
249+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? BenchmarkDotNetTasks.BenchmarkDotNetLogger;
250250
/// <summary>
251251
/// The assembly with the benchmarks (required).
252252
/// </summary>

source/Nuke.Common/Tools/Boots/Boots.Generated.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public static partial class BootsTasks
3737
/// <p>boots is a .NET global tool for <c>bootstrapping</c> <c>vsix</c> and <c>pkg</c> files.</p>
3838
/// <p>For more details, visit the <a href="https://github.com/jonathanpeppers/boots">official website</a>.</p>
3939
/// </summary>
40-
public static IReadOnlyCollection<Output> Boots(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null)
40+
public static IReadOnlyCollection<Output> Boots(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null, Action<OutputType, string> customLogger = null)
4141
{
42-
using var process = ProcessTasks.StartProcess(BootsPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, BootsLogger, outputFilter);
42+
using var process = ProcessTasks.StartProcess(BootsPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, customLogger ?? BootsLogger, outputFilter);
4343
process.AssertZeroExitCode();
4444
return process.Output;
4545
}
@@ -123,7 +123,7 @@ public partial class BootsSettings : ToolSettings
123123
/// Path to the Boots executable.
124124
/// </summary>
125125
public override string ProcessToolPath => base.ProcessToolPath ?? BootsTasks.BootsPath;
126-
public override Action<OutputType, string> ProcessCustomLogger => BootsTasks.BootsLogger;
126+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? BootsTasks.BootsLogger;
127127
/// <summary>
128128
/// Install the latest <em>stable</em> version of a product from VS manifests. Options include: <c>Xamarin.Android</c>, <c>Xamarin.iOS</c>, <c>Xamarin.Mac</c>, and <c>Mono</c>
129129
/// </summary>

source/Nuke.Common/Tools/Chocolatey/Chocolatey.Generated.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public static partial class ChocolateyTasks
3737
/// <p>Chocolatey has the largest online registry of Windows packages. Chocolatey packages encapsulate everything required to manage a particular piece of software into one deployment artifact by wrapping installers, executables, zips, and/or scripts into a compiled package file.</p>
3838
/// <p>For more details, visit the <a href="https://chocolatey.org/">official website</a>.</p>
3939
/// </summary>
40-
public static IReadOnlyCollection<Output> Chocolatey(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null)
40+
public static IReadOnlyCollection<Output> Chocolatey(string arguments, string workingDirectory = null, IReadOnlyDictionary<string, string> environmentVariables = null, int? timeout = null, bool? logOutput = null, bool? logInvocation = null, Func<string, string> outputFilter = null, Action<OutputType, string> customLogger = null)
4141
{
42-
using var process = ProcessTasks.StartProcess(ChocolateyPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, ChocolateyLogger, outputFilter);
42+
using var process = ProcessTasks.StartProcess(ChocolateyPath, arguments, workingDirectory, environmentVariables, timeout, logOutput, logInvocation, customLogger ?? ChocolateyLogger, outputFilter);
4343
process.AssertZeroExitCode();
4444
return process.Output;
4545
}
@@ -1107,7 +1107,7 @@ public partial class ChocolateySearchSettings : ToolSettings
11071107
/// Path to the Chocolatey executable.
11081108
/// </summary>
11091109
public override string ProcessToolPath => base.ProcessToolPath ?? ChocolateyTasks.ChocolateyPath;
1110-
public override Action<OutputType, string> ProcessCustomLogger => ChocolateyTasks.ChocolateyLogger;
1110+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? ChocolateyTasks.ChocolateyLogger;
11111111
/// <summary>
11121112
/// Search filter.
11131113
/// </summary>
@@ -1355,7 +1355,7 @@ public partial class ChocolateyListSettings : ToolSettings
13551355
/// Path to the Chocolatey executable.
13561356
/// </summary>
13571357
public override string ProcessToolPath => base.ProcessToolPath ?? ChocolateyTasks.ChocolateyPath;
1358-
public override Action<OutputType, string> ProcessCustomLogger => ChocolateyTasks.ChocolateyLogger;
1358+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? ChocolateyTasks.ChocolateyLogger;
13591359
/// <summary>
13601360
/// Search filter.
13611361
/// </summary>
@@ -1603,7 +1603,7 @@ public partial class ChocolateyFindSettings : ToolSettings
16031603
/// Path to the Chocolatey executable.
16041604
/// </summary>
16051605
public override string ProcessToolPath => base.ProcessToolPath ?? ChocolateyTasks.ChocolateyPath;
1606-
public override Action<OutputType, string> ProcessCustomLogger => ChocolateyTasks.ChocolateyLogger;
1606+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? ChocolateyTasks.ChocolateyLogger;
16071607
/// <summary>
16081608
/// Search filter.
16091609
/// </summary>
@@ -1851,7 +1851,7 @@ public partial class ChocolateyOutdatedSettings : ToolSettings
18511851
/// Path to the Chocolatey executable.
18521852
/// </summary>
18531853
public override string ProcessToolPath => base.ProcessToolPath ?? ChocolateyTasks.ChocolateyPath;
1854-
public override Action<OutputType, string> ProcessCustomLogger => ChocolateyTasks.ChocolateyLogger;
1854+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? ChocolateyTasks.ChocolateyLogger;
18551855
/// <summary>
18561856
/// The source to find the package(s) to install. Special sources include: ruby, webpi, cygwin, windowsfeatures, and python. To specify more than one source, pass it with a semi-colon separating the values (-e.g. "'source1;source2'"). Defaults to default feeds.
18571857
/// </summary>
@@ -2019,7 +2019,7 @@ public partial class ChocolateyPackSettings : ToolSettings
20192019
/// Path to the Chocolatey executable.
20202020
/// </summary>
20212021
public override string ProcessToolPath => base.ProcessToolPath ?? ChocolateyTasks.ChocolateyPath;
2022-
public override Action<OutputType, string> ProcessCustomLogger => ChocolateyTasks.ChocolateyLogger;
2022+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? ChocolateyTasks.ChocolateyLogger;
20232023
/// <summary>
20242024
/// Path to nuspec
20252025
/// </summary>
@@ -2163,7 +2163,7 @@ public partial class ChocolateyPushSettings : ToolSettings
21632163
/// Path to the Chocolatey executable.
21642164
/// </summary>
21652165
public override string ProcessToolPath => base.ProcessToolPath ?? ChocolateyTasks.ChocolateyPath;
2166-
public override Action<OutputType, string> ProcessCustomLogger => ChocolateyTasks.ChocolateyLogger;
2166+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? ChocolateyTasks.ChocolateyLogger;
21672167
/// <summary>
21682168
/// Path to Nuget package (.nupkg).
21692169
/// </summary>
@@ -2306,7 +2306,7 @@ public partial class ChocolateyNewSettings : ToolSettings
23062306
/// Path to the Chocolatey executable.
23072307
/// </summary>
23082308
public override string ProcessToolPath => base.ProcessToolPath ?? ChocolateyTasks.ChocolateyPath;
2309-
public override Action<OutputType, string> ProcessCustomLogger => ChocolateyTasks.ChocolateyLogger;
2309+
public override Action<OutputType, string> ProcessCustomLogger => base.ProcessCustomLogger ?? ChocolateyTasks.ChocolateyLogger;
23102310
/// <summary>
23112311
/// Generate automatic package instead of normal. Defaults to false.
23122312
/// </summary>

0 commit comments

Comments
 (0)