Skip to content

Commit 0b4197b

Browse files
committed
Update build badge
1 parent bad1daf commit 0b4197b

File tree

3 files changed

+10
-21
lines changed

3 files changed

+10
-21
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,12 @@ jobs:
2020
- name: Install DocFX
2121
run: choco install docfx -y
2222
- name: Build
23-
run: |
24-
dotnet build src/Advanced.Algorithms.sln
23+
run: dotnet build src/Advanced.Algorithms.sln
2524
- name: Test
26-
run: |
27-
dotnet test src/Advanced.Algorithms.sln
25+
run: dotnet test src/Advanced.Algorithms.sln
2826
- name: Update Documentation
2927
if: github.ref == 'refs/heads/develop'
30-
run: |
31-
docfx .github/docfx.json
28+
run: docfx .github/docfx.json
3229
- name: Publish Documentation
3330
if: github.ref == 'refs/heads/develop'
3431
uses: EndBug/add-and-commit@v9

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Please don't take effort to create pull requests for new algorithms or data stru
66

77
Various important computer science algorithms generically implemented in C#.
88

9-
<a href="https://ci.appveyor.com/project/justcoding121/advanced-algorithms">![Build Status](https://ci.appveyor.com/api/projects/status/9xpcp4m87max2066?svg=true)</a>
9+
[![.NET Core](https://github.com/justcoding121/advanced-algorithms/actions/workflows/dotnetcore.yml/badge.svg?branch=develop)](https://github.com/justcoding121/advanced-algorithms/actions/workflows/dotnetcore.yml)
1010

1111
Install by [nuget](https://www.nuget.org/packages/Advanced.Algorithms)
1212

src/Advanced.Algorithms.sln

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26730.16
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.1.32228.430
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{6FD3B84B-9283-4E9C-8C43-A234E9AA3EAA}"
7-
ProjectSection(SolutionItems) = preProject
8-
..\.nuget\NuGet.Config = ..\.nuget\NuGet.Config
9-
..\.nuget\NuGet.exe = ..\.nuget\NuGet.exe
10-
..\.nuget\NuGet.targets = ..\.nuget\NuGet.targets
11-
EndProjectSection
12-
EndProject
136
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Documentation", "Documentation", "{38EA62D0-D2CB-465D-AF4F-407C5B4D4A1E}"
147
ProjectSection(SolutionItems) = preProject
158
..\LICENSE = ..\LICENSE
@@ -18,14 +11,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Documentation", "Documentat
1811
EndProject
1912
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{AC9AE37A-3059-4FDB-9A5C-363AD86F2EEF}"
2013
ProjectSection(SolutionItems) = preProject
21-
..\.build\build.ps1 = ..\.build\build.ps1
22-
..\.build\docfx.json = ..\.build\docfx.json
23-
..\.build\setup.ps1 = ..\.build\setup.ps1
14+
..\.github\docfx.json = ..\.github\docfx.json
15+
..\.github\workflows\dotnetcore.yml = ..\.github\workflows\dotnetcore.yml
2416
EndProjectSection
2517
EndProject
2618
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Advanced.Algorithms", "Advanced.Algorithms\Advanced.Algorithms.csproj", "{32E22D53-CECD-4E2D-ADAD-85DD79A8549F}"
2719
EndProject
28-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Advanced.Algorithms.Tests", "..\tests\Advanced.Algorithms.Tests\Advanced.Algorithms.Tests.csproj", "{556705BD-1E64-426D-A9CA-08390156FB85}"
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Advanced.Algorithms.Tests", "..\tests\Advanced.Algorithms.Tests\Advanced.Algorithms.Tests.csproj", "{556705BD-1E64-426D-A9CA-08390156FB85}"
2921
EndProject
3022
Global
3123
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -46,7 +38,7 @@ Global
4638
HideSolutionNode = FALSE
4739
EndGlobalSection
4840
GlobalSection(ExtensibilityGlobals) = postSolution
49-
EnterpriseLibraryConfigurationToolBinariesPath = .1.505.2\lib\NET35
5041
SolutionGuid = {625C1EB5-44CF-47DE-A85A-B4C8C40ED90A}
42+
EnterpriseLibraryConfigurationToolBinariesPath = .1.505.2\lib\NET35
5143
EndGlobalSection
5244
EndGlobal

0 commit comments

Comments
 (0)