Skip to content

Commit ea79f28

Browse files
Copilotstephentoub
andcommitted
Replace copilot-setup.sh with copilot-setup-steps.yml workflow
Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com>
1 parent 4a939f8 commit ea79f28

File tree

2 files changed

+25
-60
lines changed

2 files changed

+25
-60
lines changed

.github/copilot-setup.sh

Lines changed: 0 additions & 60 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Copilot Setup Steps
2+
3+
on: workflow_dispatch
4+
5+
jobs:
6+
setup:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: 🔧 Set up .NET SDK
11+
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0
12+
with:
13+
dotnet-version: |
14+
10.0.100-rc.1.25451.107
15+
16+
- name: 📋 Display .NET SDK information
17+
run: |
18+
echo "=== Installed .NET SDKs ==="
19+
dotnet --list-sdks
20+
echo ""
21+
echo "=== Current .NET SDK Version ==="
22+
dotnet --version
23+
echo ""
24+
echo "=== .NET Info ==="
25+
dotnet --info

0 commit comments

Comments
 (0)