forked from DynamicsValue/fake-xrm-easy-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuget.config
22 lines (22 loc) · 825 Bytes
/
nuget.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="globalPackagesFolder" value="./packages" />
</config>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="local-packages" value="../local-packages" />
<add key="github" value="https://nuget.pkg.github.com/dynamicsvalue/index.json" />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="%NUGET_USERNAME%" />
<add key="ClearTextPassword" value="%NUGET_TOKEN%" />
</github>
</packageSourceCredentials>
<disabledPackageSources>
<add key="github" value="true" />
</disabledPackageSources>
</configuration>