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
Fsi
Nested types and modules
Type | Description |
DebugTypes |
Specify debugging type: full, portable, embedded, pdbonly. ('pdbonly' is the default if no debuggging type specified and enables attaching a debugger to a running program, 'portable' is a cross-platform format, 'embedded' is a cross-platform format embedded into the output file). |
FsiParams | |
FsiTool | |
Profile |
Specify target framework profile of this assembly. Valid values are mscorlib, netcore or netstandard. Default - mscorlib |
Functions and values
Function or value | Description | ||
Fsi.exec fsiParams script scriptArgs
Signature: fsiParams:(FsiParams -> FsiParams) -> script:string -> scriptArgs:string list -> int * string list
|
Executes the internal fsi within FSC on the given script Returns error code and an exception message if any exceptions were thrown Samplee.g: Passing some arguments to fsi, along with the script and some args to be passed to the script
val fsiExe : string
val script : string
val exitcode : obj
val msgs : obj
|