-
Notifications
You must be signed in to change notification settings - Fork 1
/
NuGet.Config
26 lines (25 loc) · 928 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- For more info, see https://docs.nuget.org/consume/nuget-config-file -->
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<!-- Windows Community Toolkit Labs preview feed -->
<add key="Toolkit Labs" value="https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json" />
</packageSources>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
</packageRestore>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="Toolkit Labs">
<package pattern="CommunityToolkit.Labs.*" />
</packageSource>
</packageSourceMapping>
<bindingRedirects>
<add key="skip" value="False" />
</bindingRedirects>
</configuration>