Skip to content
Merged

v8.4 #80

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/cloudscribe.Pagination.Models/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# cloudscribe.Pagination.Models

Shared models used by cloudscribe pagination libraries.

## Usage

This is an internal/shared library and is typically referenced by other cloudscribe projects. If you need to use the models directly:

1. Install the NuGet package:
```shell
dotnet add package cloudscribe.Pagination.Models
```
2. Reference the models in your code as needed.

## License

Licensed under the Apache-2.0 License.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>Pagination models</Description>
<Copyright>Source Tree Solutions</Copyright>
<Version>8.3.0</Version>
<Version>8.4.0</Version>
<Authors>Joe Audette</Authors>

<TargetFramework>net8.0</TargetFramework>
Expand All @@ -15,8 +15,13 @@
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Pagination.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
</ItemGroup>
Expand Down
24 changes: 24 additions & 0 deletions src/cloudscribe.Web.Pagination/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# cloudscribe.Web.Pagination

An ASP.NET Core TagHelper for pagination. Provides flexible, customizable, and Bootstrap-compatible pagination controls for web applications.

## Usage

1. Install the NuGet package:
```shell
dotnet add package cloudscribe.Web.Pagination
```
2. Add the TagHelper to your `_ViewImports.cshtml`:
```csharp
@addTagHelper *, cloudscribe.Web.Pagination
```
3. Use the `<cs-pager>` TagHelper in your Razor views:
```html
<cs-pager ... />
```

For full documentation and advanced usage, see the [GitHub repo](https://github.com/joeaudette/cloudscribe.Web.Pagination).

## License

Licensed under the Apache-2.0 License.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>an AspNetCore TagHelper for pagination</Description>
<Copyright>Source Tree Solutions</Copyright>
<Version>8.3.0</Version>
<Version>8.4.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Joe Audette</Authors>
<PackageTags>cloudscribe;mvc;pagination;navigation;bootstrap</PackageTags>
Expand All @@ -14,8 +14,13 @@
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Pagination.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>

<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions update_version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
$directory = "src"

# Define the old & new versions
$oldVersion = '8\.2' # slash needed !
$newVersion = "8.3.0"
$newWildcardVersion = "8.3.*"
$oldVersion = '8\.3' # slash needed !
$newVersion = "8.4.0"
$newWildcardVersion = "8.4.*"


# Get all .csproj files in the directory and subdirectories
Expand Down
Loading