Skip to content
This repository was archived by the owner on Jun 24, 2026. It is now read-only.

Commit 23b1afa

Browse files
Restore single-feed nuget.config (CFS only)
PR #267 had added nuget.org as a NuGet source and a packageSourceMapping that routed * to nuget.org, plus a hardcoded local feed at C:\Users\Tig. This caused Terminal.Gui (and other dependencies) to be pulled directly from nuget.org instead of the PowerShell team's CFS feed, violating the policy that all packages flow through CFS for upstream-mirrored ingestion. Revert nuget.config to main's contents: a single PowerShellCore_PublicPackages source. CFS upstream-ingests from nuget.org on demand, so no source mapping is needed and Terminal.Gui 2.0.1 (and everything else) restores from CFS. Verified: project.assets.json + .nupkg.metadata both show Terminal.Gui 2.0.1 sourced from pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e4074de commit 23b1afa

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

nuget.config

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
44
<clear />
55
<add key="PowerShellCore_PublicPackages" value="https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell/nuget/v3/index.json" />
6-
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
7-
<add key="local" value="C:\Users\Tig/psrepo" />
86
</packageSources>
9-
<packageSourceMapping>
10-
<packageSource key="nuget.org">
11-
<package pattern="*" />
12-
</packageSource>
13-
<packageSource key="PowerShellCore_PublicPackages">
14-
<package pattern="Microsoft.PowerShell.*" />
15-
<package pattern="System.Management.Automation" />
16-
</packageSource>
17-
</packageSourceMapping>
187
</configuration>

0 commit comments

Comments
 (0)