@@ -13,9 +13,9 @@ An C# implementation of the Luhn algorithm.
13
13
</thead >
14
14
<tbody >
15
15
<tr>
16
- <td rowspan=9 ><a href ="https://github.com/shinji-san/LuhnDotNet/actions?query=workflow%3A%22LuhnDotNet+%28All+supported+TFM%29%22" target="_blank"><img src="https://github.com/shinji-san/LuhnDotNet/workflows/LuhnDotNet%20(All%20supported%20TFM)/badge.svg" alt="Build status"/></a></td>
17
- <td rowspan=9 ><code>LuhnDotNet.sln</code></td>
18
- <td rowspan=9 >SDK</td>
16
+ <td rowspan=10 ><a href ="https://github.com/shinji-san/LuhnDotNet/actions?query=workflow%3A%22LuhnDotNet+%28All+supported+TFM%29%22" target="_blank"><img src="https://github.com/shinji-san/LuhnDotNet/workflows/LuhnDotNet%20(All%20supported%20TFM)/badge.svg" alt="Build status"/></a></td>
17
+ <td rowspan=10 ><code>LuhnDotNet.sln</code></td>
18
+ <td rowspan=10 >SDK</td>
19
19
<td>Standard 2.0</td>
20
20
</tr>
21
21
<tr>
@@ -42,6 +42,9 @@ An C# implementation of the Luhn algorithm.
42
42
<tr>
43
43
<td>.NET 7</td>
44
44
</tr>
45
+ <tr>
46
+ <td>.NET 8</td>
47
+ </tr>
45
48
</tbody >
46
49
</table >
47
50
@@ -58,14 +61,17 @@ An C# implementation of the Luhn algorithm.
58
61
</thead >
59
62
<tbody >
60
63
<tr>
61
- <td rowspan=9 ><a href="https://github.com/shinji-san/LuhnDotNet/actions?query=workflow%3A%22LuhnDotNet+NuGet%22" target="_blank"><img src="https://github.com/shinji-san/LuhnDotNet/workflows/LuhnDotNet%20NuGet/badge.svg?branch=v0.2 .0" alt="LuhnDotNet NuGet"/></a></td>
62
- <td rowspan=9 ><a href="https://badge.fury.io/nu/LuhnDotNet" target="_blank"><img src="https://badge.fury.io/nu/LuhnDotNet.svg" alt="NuGet Version 0.2 .0"/></a></td>
63
- <td rowspan=9 ><a href="https://github.com/shinji-san/LuhnDotNet/tree/v0.2 .0" target="_blank"><img src="https://img.shields.io/badge/LuhnDotNet-0.2 .0-green.svg?logo=github&logoColor=959da5&color=2ebb4e&labelColor=2b3137" alt="Tag"/></a></td>
64
+ <td rowspan=10 ><a href="https://github.com/shinji-san/LuhnDotNet/actions?query=workflow%3A%22LuhnDotNet+NuGet%22" target="_blank"><img src="https://github.com/shinji-san/LuhnDotNet/workflows/LuhnDotNet%20NuGet/badge.svg?branch=v1.0 .0" alt="LuhnDotNet NuGet"/></a></td>
65
+ <td rowspan=10 ><a href="https://badge.fury.io/nu/LuhnDotNet" target="_blank"><img src="https://badge.fury.io/nu/LuhnDotNet.svg" alt="NuGet Version 1.0 .0"/></a></td>
66
+ <td rowspan=10 ><a href="https://github.com/shinji-san/LuhnDotNet/tree/v1.0 .0" target="_blank"><img src="https://img.shields.io/badge/LuhnDotNet-1.0 .0-green.svg?logo=github&logoColor=959da5&color=2ebb4e&labelColor=2b3137" alt="Tag"/></a></td>
64
67
<td>.NET 6</td>
65
68
</tr>
66
69
<tr>
67
70
<td>.NET 7</td>
68
71
</tr>
72
+ <tr>
73
+ <td>.NET 8</td>
74
+ </tr>
69
75
<tr>
70
76
<td>Standard 2.0</td>
71
77
</tr>
@@ -94,10 +100,10 @@ An C# implementation of the Luhn algorithm.
94
100
95
101
1 . Open a console and switch to the directory, containing your project file.
96
102
97
- 2 . Use the following command to install version 0.2 .0 of the LuhnDotNet package:
103
+ 2 . Use the following command to install version 1.0 .0 of the LuhnDotNet package:
98
104
99
105
``` dotnetcli
100
- dotnet add package LuhnDotNet -v 0.2 .0 -f <FRAMEWORK>
106
+ dotnet add package LuhnDotNet -v 1.0 .0 -f <FRAMEWORK>
101
107
```
102
108
103
109
3. After the completition of the command, look at the project file to make sure that the package is successfuly installed.
@@ -106,7 +112,7 @@ An C# implementation of the Luhn algorithm.
106
112
107
113
```xml
108
114
<ItemGroup>
109
- <PackageReference Include="LuhnDotNet" Version="0.2 .0" />
115
+ <PackageReference Include="LuhnDotNet" Version="1.0 .0" />
110
116
</ItemGroup>
111
117
```
112
118
## Remove LuhnDotNet package
@@ -206,7 +212,7 @@ namespace Example4
206
212
207
213
# CLI building instructions
208
214
For the following instructions, please make sure that you are connected to the internet. If necessary, NuGet will try to restore the [ xUnit] ( https://xunit.net/ ) packages.
209
- ## Using dotnet to build for .NET 6, .NET 7 and .NET FX 4.x
215
+ ## Using dotnet to build for .NET 6, .NET 7, .NET 8 and .NET FX 4.x
210
216
Use one of the following solutions with ` dotnet ` to build [ LuhnDotNet] ( #luhndotnet ) :
211
217
* ` LuhnDotNet.sln ` (all, [ see table] ( #build--test-status-of-default-branch ) )
212
218
0 commit comments