Skip to content

Commit 427dadd

Browse files
ViktorHoferCopilot
andcommitted
Log NetCoreSdkRoot casing normalization at High importance
Make the temporary #14026 workaround leave visible evidence in CI console logs (it only fires when the drive casing actually differs, so this is not noisy on healthy machines). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent dd1aa62 commit 427dadd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Microsoft.DotNet.Arcade.Sdk/tools/Workarounds.targets

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,9 @@ public class NormalizeSdkRootDriveCasing : Task
381381
if (canonicalDrive != SdkRoot[0])
382382
{
383383
Result = canonicalDrive + SdkRoot.Substring(1);
384+
// High importance so the (temporary) workaround leaves clear evidence in CI logs.
384385
Log.LogMessage(
385-
MessageImportance.Low,
386+
MessageImportance.High,
386387
"Normalized NetCoreSdkRoot drive casing '{0}' -> '{1}' to match Environment.ProcessPath (#14026 workaround).",
387388
SdkRoot[0],
388389
canonicalDrive);

0 commit comments

Comments
 (0)