From 7f8b3dd084d7fd5791317a8ecebd4b4a90d27341 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Oct 2025 03:02:15 +0000 Subject: [PATCH 1/2] Initial plan From 38fed42ab800ceafeb67dfa162976cfc4fbf596a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Oct 2025 03:07:33 +0000 Subject: [PATCH 2/2] Add copilot-setup-steps.yml for .NET 10.0.100 RC1 SDK installation Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com> --- .github/copilot-setup-steps.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..0c822439 --- /dev/null +++ b/.github/copilot-setup-steps.yml @@ -0,0 +1,19 @@ +name: Setup .NET SDK 10.0.100 RC1 +steps: + - name: Download and install .NET 10.0.100 RC1 SDK + run: | + # Download the .NET install script + curl -sSL https://dot.net/v1/dotnet-install.sh -o /tmp/dotnet-install.sh + chmod +x /tmp/dotnet-install.sh + + # Install .NET SDK 10.0.100-rc.1.25451.107 + /tmp/dotnet-install.sh --version 10.0.100-rc.1.25451.107 --install-dir $HOME/.dotnet + + # Add to PATH + echo "$HOME/.dotnet" >> $GITHUB_PATH + + # Cleanup + rm -f /tmp/dotnet-install.sh + - name: Verify .NET SDK installation + run: | + $HOME/.dotnet/dotnet --version