File tree Expand file tree Collapse file tree 5 files changed +56
-5
lines changed
Expand file tree Collapse file tree 5 files changed +56
-5
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments