Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found
here.
If the API is already migrated you can check here if exists in a module.
More information regarding the migration can be found here
OBSOLETE
FAKE0001 Use `open Fake.Core` and `Process.Shell`
Shell
Allows to exec shell operations synchronously and asynchronously.
Constructors
Constructor | Description |
new()
Signature: unit -> Shell
|
Static members
Static member | Description |
Shell.AsyncExec(cmd, args, dir)
Signature: (cmd:string * args:string option * dir:string option) -> Async<int>
Attributes: [<Obsolete("FAKE0001 Use `open Fake.Core` and `Process.Shell.AsyncExec`")>] |
OBSOLETEFAKE0001 Use `open Fake.Core` and `Process.Shell.AsyncExec` Runs the given process asynchronously. Parameters
|
Shell.Exec(cmd, args, dir)
Signature: (cmd:string * args:string option * dir:string option) -> int
Attributes: [<Obsolete("FAKE0001 Use `open Fake.Core` and `Process.Shell.Exec`")>] |
OBSOLETEFAKE0001 Use `open Fake.Core` and `Process.Shell.Exec` Runs the given process, waits for it's completion and returns the exit code. Parameters
|