From 0543f437879c3a1f2ad54cbe31babdd11d18f7d3 Mon Sep 17 00:00:00 2001 From: Dan Moseley Date: Fri, 22 Aug 2025 11:48:01 -0600 Subject: [PATCH 1/2] Enhance workflow with .NET installation steps --- .github/workflows/copilot-setup-steps.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 2714754f2c09..939eb5305cc5 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -16,9 +16,28 @@ jobs: steps: - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2 - # Include PrepareForHelix to maximise what is downloaded here + # Include PrepareForHelix to maximise what is downloaded here - name: Build solution env: # prevent GitInfo errors CI: false run: ./restore.sh + + # For MCP servers like nuget's + - name: Install .NET 10.x + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 10.x + dotnet-quality: preview + + # for MCP servers + - name: Install .NET 8.x + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 8.x + + # Diagnostics in the log + - name: dotnet --info + run: dotnet --info From b83c84bba8d07a0ab2b53bfa3979cfa986d92be5 Mon Sep 17 00:00:00 2001 From: Dan Moseley Date: Fri, 22 Aug 2025 11:59:36 -0600 Subject: [PATCH 2/2] Update .github/workflows/copilot-setup-steps.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/copilot-setup-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 939eb5305cc5..1ff417e1a81a 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -40,4 +40,4 @@ jobs: # Diagnostics in the log - name: dotnet --info - run: dotnet --info + run: dotnet --info