-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.config
More file actions
39 lines (33 loc) · 1.38 KB
/
NuGet.config
File metadata and controls
39 lines (33 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--
Primary source: nuget.org
All public packages (Avalonia, Nodify, CommunityToolkit, etc.) come from here.
-->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<!--
Optional: private feed for GoAffPro.Client and internal packages.
Uncomment and replace the URL when you set up your private NuGet feed.
Recommended: GitHub Packages, Azure Artifacts, or BaGet self-hosted.
-->
<!-- <add key="streamweaver-private" value="https://nuget.pkg.github.com/{your-org}/index.json" /> -->
<!--<add key="local" value="./nupkgs" />-->
</packageSources>
<packageSourceMapping>
<!--
Package source mapping: restricts each package to a specific source.
This prevents dependency confusion attacks — public packages must come
from nuget.org, private packages must come from the private feed.
Add a <packageSource name="streamweaver-private"> block here when the
private feed is configured.
-->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
<config>
<!-- Disable package restore from cache for CI (use -\-no-cache flag instead) -->
<!-- <add key="globalPackagesFolder" value=".nuget/packages" /> -->
</config>
</configuration>