Skip to content

Commit 1eb4c82

Browse files
authored
docs: Replace AppVeyor badge with GitHub Actions and add NuGet reference (#129)
1 parent 0c21215 commit 1eb4c82

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Cake.Sonar
22

3-
[![Build status](https://ci.appveyor.com/api/projects/status/sm1h3u7jqgen7rac/branch/master?svg=true)](https://ci.appveyor.com/project/tomstaijen/cake-sonar/branch/master)
3+
[![Build (and release)](https://github.com/cake-contrib/Cake.Sonar/actions/workflows/build.yml/badge.svg)](https://github.com/cake-contrib/Cake.Sonar/actions/workflows/build.yml)
4+
[![NuGet](https://img.shields.io/nuget/v/Cake.Sonar.svg)](https://www.nuget.org/packages/Cake.Sonar/)
5+
[![NuGet downloads](https://img.shields.io/nuget/dt/Cake.Sonar.svg)](https://www.nuget.org/packages/Cake.Sonar/)
46

57
Addin used to execute the [MSBuild scanner for SonarQube](http://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+MSBuild) using cake aliases.
68
Don't forget to include the tool package.
79

810
```csharp
9-
1011
#tool nuget:?package=MSBuild.SonarQube.Runner.Tool
1112
#addin nuget:?package=Cake.Sonar
1213

@@ -15,7 +16,7 @@ Task("Sonar")
1516
.IsDependentOn("Build")
1617
.IsDependentOn("Unit")
1718
.IsDependentOn("SonarEnd");
18-
19+
1920
Task("SonarBegin")
2021
.Does(() => {
2122
SonarBegin(new SonarBeginSettings{
@@ -40,7 +41,4 @@ Task("SonarEnd")
4041
Password = "admin"
4142
});
4243
});
43-
4444
```
45-
46-

0 commit comments

Comments
 (0)