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
SonarQube
Contains a task to run the msbuild runner of SonarQube analyzer.
Nested types and modules
Type | Description |
SonarQubeParams |
Parameter type to configure the SonarQube runner. |
Functions and values
Function or value | Description |
finish(setParams)
Signature: setParams:(SonarQubeParams -> SonarQubeParams) option -> unit
|
open Fake.Testing SonarQube.finish None SonarQube.finish (Some (fun p -> {p with Settings = ["sonar.login=login"; "sonar.password=password"] })) |
SonarQubeDefaults
Signature: SonarQubeParams
|
SonarQube default parameters - tries to locate MSBuild.SonarQube.exe in any subfolder. |
start(setParams)
Signature: setParams:(SonarQubeParams -> SonarQubeParams) -> unit
|
open Fake.Testing SonarQube.start (fun p -> {p with Key = "MyProject" Name = "MainTool" Version = "1.0 }) |