From cedcff663eda7fd78489e4c8d1bbd82e8d7d54be Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 01:20:02 +0000 Subject: [PATCH 1/3] Initial plan From 29ce29b9d46fdfc3863abe472752441188feb13d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 01:23:18 +0000 Subject: [PATCH 2/3] Add networkIsolationPolicy: Permissive,CFSClean setting to azure-pipelines-official.yml Co-authored-by: phil-allen-msft <32652734+phil-allen-msft@users.noreply.github.com> --- azure-pipelines-official.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azure-pipelines-official.yml b/azure-pipelines-official.yml index c86750005c..8650aad745 100644 --- a/azure-pipelines-official.yml +++ b/azure-pipelines-official.yml @@ -15,6 +15,8 @@ variables: extends: template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate parameters: + settings: + networkIsolationPolicy: Permissive,CFSClean sdl: sourceAnalysisPool: name: NetCore1ESPool-Svc-Internal From ef118da14832226b174e7302ec269eaa10fccd37 Mon Sep 17 00:00:00 2001 From: Phil Allen Date: Wed, 7 Jan 2026 20:17:33 -0800 Subject: [PATCH 3/3] Output command before running dotnet-format Added output command for dotnet-format execution. --- eng/format-verifier.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/format-verifier.ps1 b/eng/format-verifier.ps1 index 37c7e2e585..b406be1261 100644 --- a/eng/format-verifier.ps1 +++ b/eng/format-verifier.ps1 @@ -79,6 +79,9 @@ try { if ($stage -eq "format-workspace") { Write-Output "$(Get-Date) - $solutionFile - Formatting Workspace" + # Output command before running it + Write-Output $parentDotNetPath "$currentLocation/artifacts/bin/dotnet-format/Release/net8.0/dotnet-format.dll" $solution --no-restore -v diag --verify-no-changes + $output = & $parentDotNetPath "$currentLocation/artifacts/bin/dotnet-format/Release/net8.0/dotnet-format.dll" $solution --no-restore -v diag --verify-no-changes | Out-String Write-Output $output.TrimEnd()