-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathnuget.config
More file actions
23 lines (22 loc) · 1.11 KB
/
nuget.config
File metadata and controls
23 lines (22 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Repo-level NuGet sources. The `local-nupkgs/` folder is the feed that
`mur pack-local` writes to. It carries the Microsoft.UI.Reactor package
built from this clone (version 0.0.0-local by default). Recipes and
scaffolded apps under this repo use #:package Microsoft.UI.Reactor and
resolve through this feed.
nuget.org is the only public source we need (Microsoft.WindowsAppSDK and
friends resolve from there). We <clear /> first so user-level sources
from %APPDATA%\NuGet\NuGet.Config (often authenticated enterprise feeds)
don't get merged in. Without this, `dotnet restore` on a fresh clone
fans every package out against every inherited feed and can hang for
minutes on auth failures — see issue #214. -->
<packageSources>
<clear />
<add key="reactor-local" value="local-nupkgs" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>