-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathnuget.config
More file actions
39 lines (32 loc) · 1.27 KB
/
nuget.config
File metadata and controls
39 lines (32 loc) · 1.27 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"?>
<!--
NuGet Configuration for FieldWorks
===================================
This file configures NuGet package restoration behavior across all build environments.
PACKAGE CACHE LOCATION
======================
By default, packages are restored to the local 'packages/' folder in the repo root.
This keeps dependencies isolated per checkout and matches historical FieldWorks behavior.
PACKAGE SOURCES
===============
Uses standard NuGet.org feed. Additional feeds can be added here if needed for
private packages or local development.
-->
<configuration>
<config>
<!--
globalPackagesFolder: Where NuGet extracts and caches packages.
Builds: Uses 'packages/' relative to solution (this setting)
The NUGET_PACKAGES env var always takes precedence when set.
-->
<add key="globalPackagesFolder" value="packages" />
</config>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<!--
For local library debugging, Manage-LocalLibraries.ps1 registers a
"local" source in the user-level NuGet config automatically.
See Docs/architecture/local-library-debugging.md for the full workflow.
-->
</packageSources>
</configuration>