forked from OpenSilver/OpenSilver.Samples.TelerikUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nuget.default.Config
29 lines (28 loc) · 1.11 KB
/
Nuget.default.Config
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" />
<add key="dependencyversion" value="Highest" />
</solution>
<packageSources>
<clear />
<add key="MyGet OpenSilver Public" value="https://www.myget.org/F/opensilver/api/v3/index.json" />
<add key="MyGet" value="https://www.myget.org/F/opensilver-private/api/v3/index.json" />
<add key="MyGetRC" value="https://www.myget.org/F/opensilver-private-rc/api/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceCredentials>
<MyGet>
<add key="Username" value="myget_username" />
<add key="ClearTextPassword" value="myget_password" />
</MyGet>
<MyGetRC>
<add key="Username" value="myget_username" />
<add key="ClearTextPassword" value="myget_password" />
</MyGetRC>
<MyGetProxy>
<add key="Username" value="myget_username" />
<add key="ClearTextPassword" value="myget_password" />
</MyGetProxy>
</packageSourceCredentials>
</configuration>