Created
August 23, 2017 15:57
-
-
Save tugberkugurlu/d54a053f6a6c51a65011157c782b73b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source https://nuget.org/api/v2 | |
// NuGet packages from https://nuget.org/api/v2 source | |
nuget NUnit ~> 2.6.3 | |
source https://my-nuget-server.example.com/api/v2 | |
// NuGet packages from https://my-nuget-server.example.com/api/v2 source | |
nuget FAKE ~> 3.4 | |
nuget DotNetZip >= 1.9 | |
// Files from GitHub repositories. | |
github forki/FsUnit FsUnit.fs | |
// Gist files. | |
gist Thorium/1972349 timestamp.fs | |
// HTTP resources. | |
http http://www.fssnip.net/1n decrypt.fs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To use a different source for
FAKE
andDotNetZip
you will need to define another group (withMain
being the implied default group). I you don't Paket will use the latest versions according to your version constraints across all sources of a group. So as you typed it,nuget.org
andmy-nuget-server.example.com
would be be combined as one "virtual" source.Apart from that,
https://gist.github.com/Thorium/1972349
doesn't contain atimestamp.fs
, but rathergistfile1.fs
.Does this work?