forked from xoofx/UnityNuGet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NuGet.Config
33 lines (30 loc) · 1.08 KB
/
NuGet.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
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="PrivateFeed" value="%NUGET_FEED_URL%" />
<add key="MainPrivateFeed" value="%NUGET_MAIN_FEED_URL%" />
</packageSources>
<packageSourceCredentials>
<PrivateFeed>
<add key="Username" value="%NUGET_REG_USERNAME%" />
<add key="ClearTextPassword" value="%NUGET_REG_PASSWORD%" />
</PrivateFeed>
<MainPrivateFeed>
<add key="Username" value="%NUGET_REG_USERNAME%" />
<add key="ClearTextPassword" value="%NUGET_REG_PASSWORD%" />
</MainPrivateFeed>
</packageSourceCredentials>
<packageSourceMapping>
<packageSource key="MainPrivateFeed">
<package pattern="TrackMan.SharedCalculator" />
</packageSource>
<packageSource key="PrivateFeed">
<package pattern="Trackman.*" />
<package pattern="I18Next.Net*" />
</packageSource>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>