@@ -61,9 +61,9 @@ An C# implementation of the Luhn algorithm.
61
61
</thead >
62
62
<tbody >
63
63
<tr>
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
+ <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.1 " 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.1 "/></a></td>
66
+ <td rowspan=10><a href="https://github.com/shinji-san/LuhnDotNet/tree/v1.0.1 " target="_blank"><img src="https://img.shields.io/badge/LuhnDotNet-1.0.1 -green.svg?logo=github&logoColor=959da5&color=2ebb4e&labelColor=2b3137" alt="Tag"/></a></td>
67
67
<td>.NET 6</td>
68
68
</tr>
69
69
<tr>
@@ -100,19 +100,19 @@ An C# implementation of the Luhn algorithm.
100
100
101
101
1 . Open a console and switch to the directory, containing your project file.
102
102
103
- 2 . Use the following command to install version 1.0.0 of the LuhnDotNet package:
103
+ 2 . Use the following command to install version 1.0.1 of the LuhnDotNet package:
104
104
105
105
``` dotnetcli
106
- dotnet add package LuhnDotNet -v 1.0.0 -f <FRAMEWORK>
106
+ dotnet add package LuhnDotNet -v 1.0.1 -f <FRAMEWORK>
107
107
```
108
108
109
- 3. After the completition of the command, look at the project file to make sure that the package is successfuly installed.
109
+ 3. After the completion of the command, look at the project file to make sure that the package is successfully installed.
110
110
111
111
You can open the `.csproj` file to see the added package reference:
112
112
113
113
```xml
114
114
<ItemGroup>
115
- <PackageReference Include="LuhnDotNet" Version="1.0.0 " />
115
+ <PackageReference Include="LuhnDotNet" Version="1.0.1 " />
116
116
</ItemGroup>
117
117
```
118
118
## Remove LuhnDotNet package
@@ -125,7 +125,7 @@ An C# implementation of the Luhn algorithm.
125
125
dotnet remove package LuhnDotNet
126
126
```
127
127
128
- 3. After the completition of the command, look at the project file to make sure that the package is successfuly removed.
128
+ 3. After the completion of the command, look at the project file to make sure that the package is successfuly removed.
129
129
130
130
You can open the `.csproj` file to check the deleted package reference.
131
131
0 commit comments