This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Sonar.
Summary
Initialise msbuild for sonar analysis.
Syntax
public static void SonarBegin(this ICakeContext context, SonarBeginSettings settings)
Examples
Task("Initialise-Sonar")
.Does(() => {
SonarBegin(new SonarBeginSettings{
Name = "My.Project",
Key = "MP",
Url = "http://localhost:9000"
});
});
Attributes
| Type |
Description |
| CakeMethodAliasAttribute |
|
| CakeAliasCategoryAttribute |
|
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
|
| settings |
SonarBeginSettings |
A required settings object. |
Return Value