Skip to content

Commit 38fed42

Browse files
Copilotstephentoub
andcommitted
Add copilot-setup-steps.yml for .NET 10.0.100 RC1 SDK installation
Co-authored-by: stephentoub <2642209+stephentoub@users.noreply.github.com>
1 parent 7f8b3dd commit 38fed42

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/copilot-setup-steps.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Setup .NET SDK 10.0.100 RC1
2+
steps:
3+
- name: Download and install .NET 10.0.100 RC1 SDK
4+
run: |
5+
# Download the .NET install script
6+
curl -sSL https://dot.net/v1/dotnet-install.sh -o /tmp/dotnet-install.sh
7+
chmod +x /tmp/dotnet-install.sh
8+
9+
# Install .NET SDK 10.0.100-rc.1.25451.107
10+
/tmp/dotnet-install.sh --version 10.0.100-rc.1.25451.107 --install-dir $HOME/.dotnet
11+
12+
# Add to PATH
13+
echo "$HOME/.dotnet" >> $GITHUB_PATH
14+
15+
# Cleanup
16+
rm -f /tmp/dotnet-install.sh
17+
- name: Verify .NET SDK installation
18+
run: |
19+
$HOME/.dotnet/dotnet --version

0 commit comments

Comments
 (0)