This is part of the Fake.Core.Process module.

CreateProcess

Extensions to CreateProcess.

Functions and values

Function or valueDescription
withFramework(c)
Signature: c:CreateProcess<'?8991> -> CreateProcess<'?8991>
Type parameters: '?8991

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

Example

1: 
2: 
3: 
4: 
5: 
Command.RawCommand("file.exe", Arguments.OfArgs ["arg1"; "arg2"])
|> CreateProcess.fromCommand
|> CreateProcess.withFramework // start with mono if needed.
|> Proc.run
|> ignore
val ignore : value:'T -> unit