FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

CreateProcess Module

Extensions to CreateProcess .

Functions and values

Function or value Description

withFramework c

Full Usage: withFramework c

Parameters:
Returns: CreateProcess<'a>

Ensures the executable is run with the full framework. On non-windows platforms that means running the tool by invoking mono.

c : CreateProcess<'a>
Returns: CreateProcess<'a>
Example


 Command.RawCommand("file.exe", Arguments.OfArgs ["arg1"; "arg2"])
     |> CreateProcess.fromCommand
     |> CreateProcess.withFramework // start with mono if needed.
     |> Proc.run
     |> ignore