-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathNuGet.config
76 lines (70 loc) · 4.69 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="Local Output" value="../output" />
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
<!-- Begin: Package sources from dotnet-android -->
<add key="darc-pub-dotnet-android-e7876a4" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-android-e7876a4f/nuget/v3/index.json" />
<add key="darc-pub-dotnet-android-82d8938" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-android-82d8938c/nuget/v3/index.json" />
<!-- End: Package sources from dotnet-android -->
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
<!-- ensure only the sources defined below are used -->
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" protocolVersion="3" />
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" protocolVersion="3" />
<!-- This is for packages needed by debugger-libs -->
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
<add key="dotnet9" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" />
<add key="dotnet9-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9-transport/nuget/v3/index.json" />
<add key="dotnet10" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" />
<add key="dotnet10-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10-transport/nuget/v3/index.json" />
<!-- This is needed (currently) for the Xamarin.Android.Deploy.Installer dependency, getting the installer -->
<!-- Android binary, to support delta APK install -->
<add key="xamarin.android util" value="https://pkgs.dev.azure.com/xamarin/public/_packaging/Xamarin.Android/nuget/v3/index.json" />
<!-- Added manually for dotnet/runtime 8.0.11 -->
<add key="darc-pub-dotnet-emsdk-91b783e" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-91b783ed/nuget/v3/index.json" />
<add key="darc-pub-dotnet-runtime-ef07c4f" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-runtime-ef07c4f2/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources />
<!--
https://docs.microsoft.com/en-us/nuget/consume-packages/package-source-mapping
Define mappings by adding package patterns beneath the target source.
-->
<packageSourceMapping>
<!-- Get everything possible from the packages we built in this repo -->
<packageSource key="Local Output">
<package pattern="*" />
<package pattern="Xamarin.AndroidX.Security.SecurityCrypto" />
<package pattern="Xamarin.GoogleAndroid.Annotations" />
</packageSource>
<!-- Only get explicitly needed packages from nuget.org -->
<packageSource key="nuget.org">
<!-- External packages -->
<package pattern="Microsoft.Android.Ref.*" />
<package pattern="Microsoft.Android.Runtime.*" />
<package pattern="Microsoft.AspNetCore.*" />
<package pattern="Microsoft.Extensions.*" />
<package pattern="Microsoft.Graphics.*" />
<package pattern="Microsoft.IO.*" />
<package pattern="Microsoft.iOS.*" />
<package pattern="Microsoft.MacCatalyst.*" />
<package pattern="Microsoft.Maui.*" />
<package pattern="Microsoft.NET.*" />
<package pattern="Microsoft.NETCore.*" />
<package pattern="Microsoft.Web.*" />
<package pattern="Microsoft.Windows.*" />
<package pattern="Microsoft.WindowsAppSDK" />
<package pattern="Microsoft.WindowsDesktop.*" />
<package pattern="System.Text*" />
<!-- Not part of bindings, grab the published version -->
<package pattern="Xamarin.Build.Download" />
<!-- Need the 9999.0.0 version from NuGet -->
<package pattern="Xamarin.Google.Guava.ListenableFuture" />
<!-- Need the unstable version from NuGet -->
<package pattern="Xamarin.AndroidX.Security.SecurityCrypto" />
</packageSource>
</packageSourceMapping>
<config>
<add key="globalPackagesFolder" value="../packages" />
</config>
</configuration>