Last active
November 8, 2018 20:18
-
-
Save da9l/18772454e438c0902d2d1812b5c84d7c to your computer and use it in GitHub Desktop.
Install paket bootstrapper from https
This file contains 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
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