-
Notifications
You must be signed in to change notification settings - Fork 89
/
NuGet.Config
25 lines (24 loc) · 972 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="elsa3.feedz.io" value="https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json" />
<add key="webhooks-coreo.feedz.io" value="https://f.feedz.io/personal/webhooks-core/nuget/index.json" />
</packageSources>
<packageSourceMapping>
<clear />
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="elsa3.feedz.io">
<package pattern="Elsa" />
<package pattern="Elsa.*" />
<package pattern="Elsa.Studio.*" />
</packageSource>
<packageSource key="webhooks-coreo.feedz.io">
<package pattern="WebhooksCore" />
<package pattern="WebhooksCore.*" />
</packageSource>
</packageSourceMapping>
</configuration>