From d1696e6c3c252d03513e8e2d426d9c3553d54843 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 16 Oct 2025 13:48:19 +0000 Subject: [PATCH 1/4] Initial plan From 38c1494d43b1683da3e6acc653b88b82677ab385 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 16 Oct 2025 13:53:29 +0000 Subject: [PATCH 2/4] Add copilot-setup-steps.yml for .NET 10 SDK preinstallation Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com> --- .github/copilot-setup-steps.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/copilot-setup-steps.yml diff --git a/.github/copilot-setup-steps.yml b/.github/copilot-setup-steps.yml new file mode 100644 index 00000000..c0cd4848 --- /dev/null +++ b/.github/copilot-setup-steps.yml @@ -0,0 +1,5 @@ +name: Setup .NET SDK +steps: + - uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0 + with: + global-json-file: global.json From 9b20e7542d6bd1be7d413ec737effe7c0478bb7c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 16 Oct 2025 14:12:46 +0000 Subject: [PATCH 3/4] Use semantic version tag for setup-dotnet action Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com> --- .github/copilot-setup-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/copilot-setup-steps.yml b/.github/copilot-setup-steps.yml index c0cd4848..07b41290 100644 --- a/.github/copilot-setup-steps.yml +++ b/.github/copilot-setup-steps.yml @@ -1,5 +1,5 @@ name: Setup .NET SDK steps: - - uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0 + - uses: actions/setup-dotnet@v5 with: global-json-file: global.json From b72e82b1e110f0d34580e189f8bc51e927db3423 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 16 Oct 2025 14:18:46 +0000 Subject: [PATCH 4/4] Add dotnet --info step to verify SDK installation Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com> --- .github/copilot-setup-steps.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/copilot-setup-steps.yml b/.github/copilot-setup-steps.yml index 07b41290..b5fea914 100644 --- a/.github/copilot-setup-steps.yml +++ b/.github/copilot-setup-steps.yml @@ -3,3 +3,4 @@ steps: - uses: actions/setup-dotnet@v5 with: global-json-file: global.json + - run: dotnet --info