Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ python/dotnet-ref
dotnet/filtered-*.slnx
**/*.lscache

# Local .NET build overrides
/dotnet/Directory.Build.rsp

# Local tool state
.omc/
.omx/
Expand Down
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,18 @@ Each language has its own dev setup guide, coding standards, and build scripts:
- Integration tests: `dotnet test --filter-query "/*IntegrationTests*/*/*/*"` (requires API keys/endpoints)
- Linting (auto-fix): `dotnet format`

#### Microsoft Internal Feed Proxy for GitHub Copilot SDK (.NET)

Microsoft contributors can route GitHub Copilot SDK npm downloads through the internal proxy without passing extra `dotnet` arguments:

1. Create `dotnet/Directory.Build.rsp` with:

```text
-p:CopilotNpmRegistryUrl=https://packagefeedproxy.microsoft.io/npm/
```

When running `dotnet build` (or other `dotnet` commands) from the `./dotnet` directory, this property is applied automatically.

### PR - CI Process

The continuous integration (CI) system will automatically perform the required
Expand Down
2 changes: 0 additions & 2 deletions dotnet/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ StyleCopReport.xml
*.pgc
*.pgd
*.rsp
# but not Directory.Build.rsp, as it configures directory-level build defaults
!Directory.Build.rsp
*.sbr
*.tlb
*.tli
Expand Down
Loading