Skip to content

Commit c5a74de

Browse files
authored
Snap main to release (#5668)
2 parents 240cb1c + 9dc3ab3 commit c5a74de

232 files changed

Lines changed: 5131 additions & 2002 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.azuredevops/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
version: 2
2+
3+
# Disabling dependabot on Azure DevOps as this is a mirrored repo. Updates should go through github.
4+
enable-campaigned-updates: false
5+
enable-security-updates: false
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: "Copilot Setup Steps"
2+
3+
# Allow testing of the setup steps from your repository's "Actions" tab.
4+
on: workflow_dispatch
5+
6+
jobs:
7+
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
8+
# See https://docs.github.com/en/copilot/customizing-copilot/customizing-the-development-environment-for-copilot-coding-agent
9+
copilot-setup-steps:
10+
runs-on: 8-core-ubuntu-latest
11+
12+
permissions:
13+
contents: read
14+
15+
# You can define any steps you want, and they will run before the agent starts.
16+
# If you do not check out your code, Copilot will do this for you.
17+
steps:
18+
- uses: actions/checkout@v5
19+
20+
# The NuGet MCP requires .NET 10 SDK to be available in PATH.
21+
- name: Setup local dotnet and add it to PATH PATH
22+
run:
23+
echo "$PWD/.dotnet/" >> $GITHUB_PATH
24+
25+
- name: Install Dependencies
26+
run: |
27+
sudo ./eng/common/native/install-dependencies.sh && \
28+
sudo apt-get install -qq -y \
29+
curl
30+
31+
- name: Restore solution
32+
run: ./build.sh -restore
33+
34+
- name: Run dotnet info
35+
run: dotnet --info
36+
37+
- name: Build repo
38+
run: ./build.sh

.vscode/mcp.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"servers": {
3+
"github-mcp": {
4+
"type": "http",
5+
"url": "https://api.githubcopilot.com/mcp"
6+
},
7+
"nuget": {
8+
"type": "stdio",
9+
"command": "dnx",
10+
"args": [
11+
"NuGet.Mcp.Server",
12+
"--prerelease",
13+
"--yes"
14+
]
15+
}
16+
},
17+
}

0 commit comments

Comments
 (0)