-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathNuGet.Config
More file actions
38 lines (38 loc) · 1.66 KB
/
NuGet.Config
File metadata and controls
38 lines (38 loc) · 1.66 KB
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="NuGet.org v3" value="https://api.nuget.org/v3/index.json" />
<add key="feedz.io" value="https://f.feedz.io/octopus-deploy/dependencies/nuget/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="feedz.io">
<package pattern="NuGet.Common" />
<package pattern="NuGet.Configuration" />
<package pattern="NuGet.Frameworks" />
<package pattern="NuGet.Packaging" />
<package pattern="NuGet.Protocol" />
<package pattern="NuGet.Versioning" />
<package pattern="Octopus.CoreUtilities" />
<package pattern="Octopus.Data" />
<package pattern="Octopus.Dependencies.*" />
<package pattern="Octopus.Globfish" />
<package pattern="Octopus.Ocl" />
<package pattern="Octopus.Server.Extensibility" />
<package pattern="Octopus.Server.MessageContracts*" />
<!-- Octopus.Versioning and Octopus.TinyTypes are a bit of a mess - some versions (used by other deps) are in feedz, some are in nuget. Messy. -->
<package pattern="Octopus.Versioning" />
<package pattern="Octopus.TinyTypes" />
</packageSource>
<packageSource key="NuGet.org v3">
<package pattern="NuGet.Common" />
<package pattern="NuGet.Configuration" />
<package pattern="NuGet.Frameworks" />
<package pattern="NuGet.Packaging" />
<package pattern="NuGet.Protocol" />
<package pattern="NuGet.Versioning" />
<package pattern="Octopus.Versioning" />
<package pattern="Octopus.TinyTypes" />
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>