-
Notifications
You must be signed in to change notification settings - Fork 26
/
NuGet.Config
23 lines (23 loc) · 1.06 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
<add key="vs-impl" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-impl/nuget/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="vs-impl">
<package pattern="Microsoft.VisualStudio.Platform.VSEditor" />
<package pattern="Microsoft.VisualStudio.Text.Internal" />
</packageSource>
<packageSource key="dotnet-libraries">
<package pattern="System.CommandLine" />
</packageSource>
<packageSource key="nuget.org">
<package pattern="Microsoft.CodeAnalysis.*" />
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>