forked from Ed-Fi-Alliance-OSS/Ed-Fi-ODS-Implementation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.Config
More file actions
29 lines (28 loc) · 1.25 KB
/
NuGet.Config
File metadata and controls
29 lines (28 loc) · 1.25 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<packageSources>
<add key="nuget.org v2" value="https://www.nuget.org/api/v2/" />
<add key="Ed-Fi Alliance Azure Artifacts Feed" value="https://pkgs.dev.azure.com/ed-fi-alliance/Ed-Fi-Alliance-OSS/_packaging/EdFi/nuget/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org v2">
<package pattern="*" />
</packageSource>
<packageSource key="Ed-Fi Alliance Azure Artifacts Feed">
<package pattern="EdFi.*" />
<package pattern="PostgreSQL.Binaries" />
</packageSource>
</packageSourceMapping>
<packageRestore>
<!-- The 'automatic' key is set to True when the "Automatically check for missing packages during
build in Visual Studio" checkbox is set. Clearing the box sets this to False and disables
automatic restore. -->
<add key="automatic" value="True" />
<!-- The 'enabled' key is True when the "Allow NuGet to download missing packages" checkbox is set.
Clearing the box sets this to False, disabling command-line, automatic, and MSBuild-Integrated restore. -->
<add key="enabled" value="True" />
</packageRestore>
</configuration>