Skip to content

Commit 64e4cf4

Browse files
authored
Merge pull request #80 from cloudscribe/develop
v8.4
2 parents 2e52b08 + 312e4d5 commit 64e4cf4

File tree

5 files changed

+56
-5
lines changed

5 files changed

+56
-5
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# cloudscribe.Pagination.Models
2+
3+
Shared models used by cloudscribe pagination libraries.
4+
5+
## Usage
6+
7+
This is an internal/shared library and is typically referenced by other cloudscribe projects. If you need to use the models directly:
8+
9+
1. Install the NuGet package:
10+
```shell
11+
dotnet add package cloudscribe.Pagination.Models
12+
```
13+
2. Reference the models in your code as needed.
14+
15+
## License
16+
17+
Licensed under the Apache-2.0 License.

src/cloudscribe.Pagination.Models/cloudscribe.Pagination.Models.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>Pagination models</Description>
55
<Copyright>Source Tree Solutions</Copyright>
6-
<Version>8.3.0</Version>
6+
<Version>8.4.0</Version>
77
<Authors>Joe Audette</Authors>
88

99
<TargetFramework>net8.0</TargetFramework>
@@ -15,8 +15,13 @@
1515
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1616
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Pagination.git</RepositoryUrl>
1717
<RepositoryType>git</RepositoryType>
18+
<PackageReadmeFile>README.md</PackageReadmeFile>
1819
</PropertyGroup>
1920

21+
<ItemGroup>
22+
<None Include="README.md" Pack="true" PackagePath="" />
23+
</ItemGroup>
24+
2025
<ItemGroup>
2126
<PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
2227
</ItemGroup>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# cloudscribe.Web.Pagination
2+
3+
An ASP.NET Core TagHelper for pagination. Provides flexible, customizable, and Bootstrap-compatible pagination controls for web applications.
4+
5+
## Usage
6+
7+
1. Install the NuGet package:
8+
```shell
9+
dotnet add package cloudscribe.Web.Pagination
10+
```
11+
2. Add the TagHelper to your `_ViewImports.cshtml`:
12+
```csharp
13+
@addTagHelper *, cloudscribe.Web.Pagination
14+
```
15+
3. Use the `<cs-pager>` TagHelper in your Razor views:
16+
```html
17+
<cs-pager ... />
18+
```
19+
20+
For full documentation and advanced usage, see the [GitHub repo](https://github.com/joeaudette/cloudscribe.Web.Pagination).
21+
22+
## License
23+
24+
Licensed under the Apache-2.0 License.

src/cloudscribe.Web.Pagination/cloudscribe.Web.Pagination.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>an AspNetCore TagHelper for pagination</Description>
55
<Copyright>Source Tree Solutions</Copyright>
6-
<Version>8.3.0</Version>
6+
<Version>8.4.0</Version>
77
<TargetFramework>net8.0</TargetFramework>
88
<Authors>Joe Audette</Authors>
99
<PackageTags>cloudscribe;mvc;pagination;navigation;bootstrap</PackageTags>
@@ -14,8 +14,13 @@
1414
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Pagination.git</RepositoryUrl>
1515
<RepositoryType>git</RepositoryType>
1616

17+
<PackageReadmeFile>README.md</PackageReadmeFile>
1718
</PropertyGroup>
1819

20+
<ItemGroup>
21+
<None Include="README.md" Pack="true" PackagePath="" />
22+
</ItemGroup>
23+
1924
<ItemGroup>
2025
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2126
</ItemGroup>

update_version.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
$directory = "src"
1717

1818
# Define the old & new versions
19-
$oldVersion = '8\.2' # slash needed !
20-
$newVersion = "8.3.0"
21-
$newWildcardVersion = "8.3.*"
19+
$oldVersion = '8\.3' # slash needed !
20+
$newVersion = "8.4.0"
21+
$newWildcardVersion = "8.4.*"
2222

2323

2424
# Get all .csproj files in the directory and subdirectories

0 commit comments

Comments
 (0)