Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Directory.Build.rsp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/Isolate
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description is still the template/empty, but this change globally alters build behavior for the whole repo. Please update the PR description to include (1) why /Isolate is needed, (2) the expected user-facing impact (CLI build, VS build, CI), and (3) any measured improvement/regression you observed.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding /Isolate via Directory.Build.rsp applies it to all MSBuild executions (including local dev builds and IDE-driven builds), and may fail on environments where the MSBuild version doesn’t recognize the switch. If the intent is CI-only or limited-scope usage, consider moving this flag into the CI/build scripts instead of Directory.Build.rsp; otherwise, pin/standardize the build toolchain (e.g., via global.json and CI image/tooling updates) so all supported environments use an MSBuild version that supports /Isolate.

Suggested change
/Isolate
# /Isolate flag removed from global response file.
# If isolation is required, pass /Isolate explicitly from CI or build scripts
# instead of applying it to all MSBuild invocations via Directory.Build.rsp.

Copilot uses AI. Check for mistakes.
Loading