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
Contains helper functions which allow to interact with the F# Interactive.
Function or value | Description |
handleCoreCaching(...)
Signature: context:FakeContext -> session:IFsiSession -> fsiErrorOutput:string -> ResultCoreCacheInfo
|
Handles a cache store operation, this should not throw as it is executed in a finally block and
therefore might eat other exceptions. And a caching error is not critical.
|
nameParser(scriptFileName)
Signature: scriptFileName:string -> string * (string -> string) * (string -> string option)
|
public, because it is used by test code
|
runFakeScript cache context
Signature: cache:CoreCacheInfo option -> context:FakeContext -> ResultCoreCacheInfo * RunResult
|
|
runUncached(context)
Signature: context:FakeContext -> ResultCoreCacheInfo * RunResult
|
|
tryRunCached c context
Signature: c:CoreCacheInfo -> context:FakeContext -> RunResult
|
|