Skip to content
This repository was archived by the owner on Aug 31, 2024. It is now read-only.

Commit 5e8fd90

Browse files
committed
Merge branch 'develop'
2 parents b05f590 + 1ed4c26 commit 5e8fd90

File tree

5 files changed

+5
-140
lines changed

5 files changed

+5
-140
lines changed

CI-BuildStats.sln

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,13 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "BuildStats", "src\BuildStat
1111
EndProject
1212
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "BuildStats.Tests", "tests\BuildStats.Tests\BuildStats.Tests.fsproj", "{B2541625-12CD-48AA-8C31-F864CE2CABA7}"
1313
EndProject
14-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_build", "_build", "{ED48320B-3073-4F7F-B692-00862473CF5B}"
14+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_root", "_root", "{ED48320B-3073-4F7F-B692-00862473CF5B}"
1515
ProjectSection(SolutionItems) = preProject
16-
build.ps1 = build.ps1
17-
appveyor.yml = appveyor.yml
18-
global.json = global.json
16+
.gitattributes = .gitattributes
17+
.gitignore = .gitignore
1918
NuGet.config = NuGet.config
20-
EndProjectSection
21-
EndProject
22-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_psscripts", "_psscripts", "{37842F53-276D-43F4-A6D2-85D482AB8C4C}"
23-
ProjectSection(SolutionItems) = preProject
24-
.psscripts\build-functions.ps1 = .psscripts\build-functions.ps1
25-
.psscripts\install-dotnet.ps1 = .psscripts\install-dotnet.ps1
26-
.psscripts\nuget-updates.ps1 = .psscripts\nuget-updates.ps1
27-
EndProjectSection
28-
EndProject
29-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_docs", "_docs", "{297E8815-6C99-4965-B743-1F77E84EBA59}"
30-
ProjectSection(SolutionItems) = preProject
3119
README.md = README.md
3220
LICENSE = LICENSE
33-
api.raml = api.raml
34-
EndProjectSection
35-
EndProject
36-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_git", "_git", "{3220A93E-2200-43E0-95F6-1F450C93F877}"
37-
ProjectSection(SolutionItems) = preProject
38-
.gitattributes = .gitattributes
39-
.gitignore = .gitignore
4021
EndProjectSection
4122
EndProject
4223
Global

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ A little SVG widget to display build history charts and other badges for public
1313
- [NuGet Badges](#nuget-badges)
1414
- [MyGet Badges](#myget-badges)
1515
- [Crates Badges](#crates-badges)
16-
- [API Documentation](#api-documentation)
1716
- [Docker image](#docker-image)
1817
- [Contributing](#contributing)
1918
- [Support](#support)
@@ -207,10 +206,6 @@ By adding the `packageVersion` query parameter you can set a specific version:
207206

208207
The `includePreReleases`, `vWidth` and `dWidth` query parameters work the same way as for NuGet badges (see above for more information).
209208

210-
## API Documentation
211-
212-
For complete API documentation please check out the attached [api.raml](https://github.com/dustinmoris/CI-BuildStats/blob/master/api.raml) or visit the public [API Portal](https://anypoint.mulesoft.com/apiplatform/dustinmoris/#/portals/organizations/1c966d9b-793c-46bc-a87a-427b9a4a9b4a/apis/76973/versions/79960).
213-
214209
## Docker image
215210

216211
You can also self host the application by running [CI-BuildStats from a Docker container](https://hub.docker.com/r/dustinmoris/ci-buildstats/).

api.raml

Lines changed: 0 additions & 111 deletions
This file was deleted.

src/BuildStats/BuildStats.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
5-
<Version>5.26.0</Version>
5+
<Version>5.27.0</Version>
66
<AssemblyName>BuildStats</AssemblyName>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
88
<EnableDefaultContentItems>false</EnableDefaultContentItems>

src/BuildStats/Views.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ let indexView =
3333

3434
h3 [] [ rawText "Build History Chart" ]
3535
p [] [ rawText "Add a build history widget to your public Git repository:" ]
36-
img [ _src "/appveyor/chart/dustinmoris/ci-buildstats?branch=master" ]
36+
img [ _src "/github/chart/dustinmoris/CI-BuildStats?branch=develop" ]
3737
p [ _style "margin-top: 2em;" ] [ rawText "Build history charts are currently supported for:" ]
3838
ul [] [
3939
li [] [ a [ _href "https://www.appveyor.com/"; _target "_blank" ] [ rawText "AppVeyor" ] ]

0 commit comments

Comments
 (0)