10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9d053e commit 4b12d79Copy full SHA for 4b12d79
eng/tools/tasks/Microsoft.DotNet.UnifiedBuild.Tasks/SigningValidation.cs
@@ -217,6 +217,13 @@ private void RunSignCheck()
217
Log.LogError($"SignCheck failed with exit code {process.ExitCode}: {errorLogContent}");
218
}
219
220
+ string stdoutLog = GetLogPath(_signCheckStdoutLogFileName);
221
+ string stdoutLogContent = File.Exists(stdoutLog) ? File.ReadAllText(stdoutLog).Trim() : string.Empty;
222
+ if (!string.IsNullOrWhiteSpace(stdoutLogContent) && stdoutLogContent.Contains("No files were processed"))
223
+ {
224
+ Log.LogError("SignCheck did not process any files.");
225
+ }
226
+
227
Log.LogMessage(MessageImportance.High, $"SignCheck completed.");
228
229
0 commit comments