We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2977b commit cd8dd6dCopy full SHA for cd8dd6d
.github/workflows/copilot-setup-steps.yml
@@ -16,9 +16,28 @@ jobs:
16
steps:
17
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
18
19
- # Include PrepareForHelix to maximise what is downloaded here
+ # Include PrepareForHelix to maximise what is downloaded here
20
- name: Build solution
21
env:
22
# prevent GitInfo errors
23
CI: false
24
run: ./restore.sh
25
+
26
+ # For MCP servers like nuget's
27
+ - name: Install .NET 10.x
28
+ uses: actions/setup-dotnet@v4
29
+ with:
30
+ dotnet-version: |
31
+ 10.x
32
+ dotnet-quality: preview
33
34
+ # for MCP servers
35
+ - name: Install .NET 8.x
36
37
38
39
+ 8.x
40
41
+ # Diagnostics in the log
42
+ - name: dotnet --info
43
+ run: dotnet --info
0 commit comments