You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/Nuke.Common/Tools/AzureSignTool/AzureSignTool.Generated.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,9 @@ public static partial class AzureSignToolTasks
37
37
/// <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>
38
38
/// <p>For more details, visit the <a href="https://github.com/vcsjones/AzureSignTool">official website</a>.</p>
/// 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>.
/// 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>
Copy file name to clipboardExpand all lines: source/Nuke.Common/Tools/Chocolatey/Chocolatey.Generated.cs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,9 @@ public static partial class ChocolateyTasks
37
37
/// <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>
38
38
/// <p>For more details, visit the <a href="https://chocolatey.org/">official website</a>.</p>
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);
43
43
process.AssertZeroExitCode();
44
44
return process.Output;
45
45
}
@@ -1107,7 +1107,7 @@ public partial class ChocolateySearchSettings : ToolSettings
1107
1107
/// Path to the Chocolatey executable.
1108
1108
/// </summary>
1109
1109
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;
1111
1111
/// <summary>
1112
1112
/// Search filter.
1113
1113
/// </summary>
@@ -1355,7 +1355,7 @@ public partial class ChocolateyListSettings : ToolSettings
1355
1355
/// Path to the Chocolatey executable.
1356
1356
/// </summary>
1357
1357
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;
1359
1359
/// <summary>
1360
1360
/// Search filter.
1361
1361
/// </summary>
@@ -1603,7 +1603,7 @@ public partial class ChocolateyFindSettings : ToolSettings
1603
1603
/// Path to the Chocolatey executable.
1604
1604
/// </summary>
1605
1605
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;
1607
1607
/// <summary>
1608
1608
/// Search filter.
1609
1609
/// </summary>
@@ -1851,7 +1851,7 @@ public partial class ChocolateyOutdatedSettings : ToolSettings
1851
1851
/// Path to the Chocolatey executable.
1852
1852
/// </summary>
1853
1853
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;
1855
1855
/// <summary>
1856
1856
/// 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.
1857
1857
/// </summary>
@@ -2019,7 +2019,7 @@ public partial class ChocolateyPackSettings : ToolSettings
2019
2019
/// Path to the Chocolatey executable.
2020
2020
/// </summary>
2021
2021
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;
2023
2023
/// <summary>
2024
2024
/// Path to nuspec
2025
2025
/// </summary>
@@ -2163,7 +2163,7 @@ public partial class ChocolateyPushSettings : ToolSettings
2163
2163
/// Path to the Chocolatey executable.
2164
2164
/// </summary>
2165
2165
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;
2167
2167
/// <summary>
2168
2168
/// Path to Nuget package (.nupkg).
2169
2169
/// </summary>
@@ -2306,7 +2306,7 @@ public partial class ChocolateyNewSettings : ToolSettings
2306
2306
/// Path to the Chocolatey executable.
2307
2307
/// </summary>
2308
2308
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;
2310
2310
/// <summary>
2311
2311
/// Generate automatic package instead of normal. Defaults to false.
0 commit comments