You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Step 1. Build the package with the updated version
4
+
5
+
1. Open a terminal or command prompt and navigate to the directory where your project is located (the `SolveCaptcha.csproj` file).
6
+
7
+
2. Run the command to build the package in Release mode. For example:
8
+
9
+
10
+
`dotnet pack --configuration Release`
11
+
12
+
13
+
3. After successful execution of the command, the package will be created in the bin/Release/ folder. Check that the file name includes the new version, for example:
14
+
15
+
16
+
`solvecaptcha-csharp.1.0.0.nupkg`
17
+
18
+
19
+
## Step 2. Checking the created file
20
+
21
+
Make sure that:
22
+
- The file is located in the `bin/Release/` folder.
23
+
- The file name corresponds to the format `<PackageID>.<Version>`.nupkg (in your case it should be `solvecaptcha-csharp.1.0.0.nupkg`).
24
+
- All updated metadata (including the version) is correctly reflected in the file.
25
+
26
+
## Step 3. Publishing on NuGet.org
27
+
The next step is to publish the package. To publish, use the command:
0 commit comments