Skip to content

Instantly share code, notes, and snippets.

@da9l
Last active November 8, 2018 20:18
Show Gist options
  • Save da9l/18772454e438c0902d2d1812b5c84d7c to your computer and use it in GitHub Desktop.
Save da9l/18772454e438c0902d2d1812b5c84d7c to your computer and use it in GitHub Desktop.
Install paket bootstrapper from https
function Download-Paket {
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
md -force .paket
Invoke-Webrequest -uri "https://github.com/fsprojects/Paket/releases/download/5.180.1/paket.bootstrapper.exe" -outfile ".\.paket\paket.exe"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment