This is part of the Fake.Core.Process module.
Function or value | Description |
withFramework(c)
Signature: c:CreateProcess<'?8378> -> CreateProcess<'?8378>
Type parameters: '?8378
|
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
|