forked from Mapsui/Mapsui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nuget.config
30 lines (27 loc) · 1.18 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Define the package sources, nuget.org and contoso.com. -->
<!-- `clear` ensures no additional sources are inherited from another config file. -->
<packageSources>
<clear />
<!-- `key` can be any identifier for your source. -->
<add key="local" value="Artifacts" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<!--<add key="xamarin" value="https://pkgs.dev.azure.com/xamarin/public/_packaging/SkiaSharp/nuget/v3/index.json" />-->
</packageSources>
<!-- Define mappings by adding package patterns beneath the target source. -->
<!-- Contoso.* packages and NuGet.Common will be restored from contoso.com, everything else from nuget.org. -->
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="local">
<package pattern="Mapsui" />
<package pattern="Mapsui*" />
</packageSource>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<!--<packageSource key="xamarin">
<package pattern="*" />
</packageSource>-->
</packageSourceMapping>
</configuration>