forked from dotnet/maui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NuGet.config
53 lines (53 loc) · 2.68 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Define the package sources: all mirrors or internal feeds. -->
<!-- `clear` ensures no additional sources are inherited from another config file. -->
<packageSources>
<clear />
<add key="local" value="LOCAL_PLACEHOLDER" />
<add key="nuget-only" value="NUGET_ONLY_PLACEHOLDER" />
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/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" />
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" protocolVersion="3" />
<add key="benchmark-dotnet-prerelease" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/benchmark-dotnet-prerelease/nuget/v3/index.json" />
<add key="skiasharp" value="https://pkgs.dev.azure.com/xamarin/public/_packaging/SkiaSharp/nuget/v3/index.json" />
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<disabledPackageSources>
<add key="local" value="true" />
<add key="nuget-only" value="true" />
</disabledPackageSources>
<!-- Define mappings by adding package patterns beneath the target source. -->
<!-- Some packages will restore from different locations, but most will be from `dotnet-public`. -->
<!-- The key value for <packageSource> should match key values from <packageSources> element. -->
<packageSourceMapping>
<packageSource key="local">
<package pattern="Microsoft.Maui.*" />
<package pattern="Microsoft.AspNetCore.Components.WebView.*" />
</packageSource>
<packageSource key="nuget-only">
<package pattern="Microsoft.Maui.*" />
<package pattern="Microsoft.AspNetCore.Components.WebView.*" />
</packageSource>
<!-- <packageSource key="dotnet-tools">
</packageSource> -->
<packageSource key="dotnet-eng">
<package pattern="microsoft.dotnet.*" />
<package pattern="Microsoft.DiaSymReader.*" />
</packageSource>
<packageSource key="dotnet-public">
<package pattern="*" />
<package pattern="Microsoft.DotNet.PlatformAbstractions" />
<package pattern="Microsoft.Maui.*" />
<package pattern="Microsoft.AspNetCore.Components.WebView.*" />
<package pattern="Microsoft.DotNet.ILCompiler" />
</packageSource>
<!-- <packageSource key="benchmark-dotnet-prerelease">
</packageSource> -->
<packageSource key="skiasharp">
<package pattern="_NativeAssets.*" />
</packageSource>
</packageSourceMapping>
</configuration>