forked from serilog-contrib/serilog-sinks-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuget.config
17 lines (15 loc) · 900 Bytes
/
nuget.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- DefaultPushSource key is similar to the 'DefaultPushSource' key of NuGet.Config schema-->
<!-- This can be used by administrators to prevent accidental publishing of packages to nuget.org -->
<config>
<add key="DefaultPushSource" value="https://api.nuget.org/v3/index.json" />
</config>
<packageSources> <!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Elastic Abstractions CI" value="https://ci.appveyor.com/nuget/elasticsearch-net-abstractions" />
<add key="Elastic Clients CI" value="https://ci.appveyor.com/nuget/elasticsearch-net" />
</packageSources>
</configuration>