Skip to content

Commit 2b7792c

Browse files
committed
v8.4
1 parent e999fa3 commit 2b7792c

File tree

7 files changed

+56
-7
lines changed

7 files changed

+56
-7
lines changed

src/NavigationDemo.Web/NavigationDemo.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="cloudscribe.Web.Localization" Version="8.3.0" />
21+
<PackageReference Include="cloudscribe.Web.Localization" Version="8.4.0" />
2222
</ItemGroup>
2323

2424
<ItemGroup>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# cloudscribe.Web.Navigation
2+
3+
An ASP.NET Core viewcomponent for menus and breadcrumbs. Provides flexible, hierarchical navigation and breadcrumb support for web applications.
4+
5+
## Usage
6+
7+
1. Install the NuGet package:
8+
```shell
9+
dotnet add package cloudscribe.Web.Navigation
10+
```
11+
2. Add the view component to your layout or page:
12+
```csharp
13+
@await Component.InvokeAsync("Navigation")
14+
```
15+
3. Configure navigation in your app as needed. See the [GitHub repo](https://github.com/joeaudette/cloudscribe.Web.Navigation) for advanced usage and customization.
16+
17+
## License
18+
19+
Licensed under the Apache-2.0 License.

src/cloudscribe.Web.Navigation/cloudscribe.Web.Navigation.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>an ASP.NET Core viewcomponent for menus and breadcrumbs</Description>
5-
<Version>8.3.0</Version>
5+
<Version>8.4.0</Version>
66
<TargetFramework>net8.0</TargetFramework>
77
<Authors>Joe Audette</Authors>
88
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
@@ -13,8 +13,13 @@
1313
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Navigation.git</RepositoryUrl>
1414
<RepositoryType>git</RepositoryType>
1515

16+
<PackageReadmeFile>README.md</PackageReadmeFile>
1617
</PropertyGroup>
1718

19+
<ItemGroup>
20+
<None Include="README.md" Pack="true" PackagePath="" />
21+
</ItemGroup>
22+
1823
<ItemGroup>
1924
<None Include="icon.png" Pack="true" PackagePath="\" />
2025
</ItemGroup>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# cloudscribe.Web.SiteMap.FromNavigation
2+
3+
A library that implements ISiteMapNodeService using the existing tree of nodes from cloudscribe.Web.Navigation.NavigationTreeBuilderService.
4+
5+
## Usage
6+
7+
1. Install the NuGet package:
8+
```shell
9+
dotnet add package cloudscribe.Web.SiteMap.FromNavigation
10+
```
11+
2. Reference this library in your ASP.NET Core project and configure as needed.
12+
13+
## License
14+
15+
Licensed under the Apache-2.0 License.

src/cloudscribe.Web.SiteMap.FromNavigation/cloudscribe.Web.SiteMap.FromNavigation.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>cloudscribe.Web.SiteMap.FromNavigation a library that implements ISiteMapNodeService using existing tree of nodes from cloudscribe.Web.Navigation.NavigationTreeBuilderService</Description>
5-
<Version>8.3.0</Version>
5+
<Version>8.4.0</Version>
66
<TargetFramework>net8.0</TargetFramework>
77
<Authors>Joe Audette</Authors>
88
<PackageTags>cloudscribe;mvc;sitemap</PackageTags>
@@ -13,8 +13,13 @@
1313
<RepositoryType>git</RepositoryType>
1414
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1515

16+
<PackageReadmeFile>README.md</PackageReadmeFile>
1617
</PropertyGroup>
1718

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

src/cloudscribe.Web.SiteMap/cloudscribe.Web.SiteMap.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>ASP.NET Core controller and models for generating an xml sitemap for search indexes http://www.sitemaps.org</Description>
5-
<Version>8.3.0</Version>
5+
<Version>8.4.0</Version>
66
<TargetFramework>net8.0</TargetFramework>
77

88
<Authors>Joe Audette</Authors>
@@ -15,8 +15,13 @@
1515
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Navigation.git</RepositoryUrl>
1616
<RepositoryType>git</RepositoryType>
1717

18+
<PackageReadmeFile>README.md</PackageReadmeFile>
1819
</PropertyGroup>
1920

21+
<ItemGroup>
22+
<None Include="README.md" Pack="true" PackagePath="" />
23+
</ItemGroup>
24+
2025
<ItemGroup>
2126
<None Include="icon.png" Pack="true" PackagePath="\" />
2227
</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)