You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in order to make things even better he proposed the following addition for our API:
// This will be added to paket.exe in a future version
module Paket =
type Scripting() =
static member Install(dependencies, ?force, ?hard) =
System.IO.File.WriteAllText("paket.dependencies", dependencies)
let dependencies = Paket.Dependencies.Locate(__SOURCE_DIRECTORY__)
dependencies.Install(force=defaultArg force false, hard=defaultArg hard false)
The text was updated successfully, but these errors were encountered:
@dsyme created a nice sample which only uses only fsi to install a bunch of packages see https://gist.github.com/dsyme/9b18608b78dccf92ba33
in order to make things even better he proposed the following addition for our API:
The text was updated successfully, but these errors were encountered: