From 2b7792c91f051fd2455cb319aca47d9f82142053 Mon Sep 17 00:00:00 2001
From: Jim Kerslake <39943820+JimKerslake@users.noreply.github.com>
Date: Wed, 23 Jul 2025 17:01:11 +0100
Subject: [PATCH] v8.4
---
.../NavigationDemo.Web.csproj | 2 +-
src/cloudscribe.Web.Navigation/README.md | 19 +++++++++++++++++++
.../cloudscribe.Web.Navigation.csproj | 7 ++++++-
.../README.md | 15 +++++++++++++++
...udscribe.Web.SiteMap.FromNavigation.csproj | 7 ++++++-
.../cloudscribe.Web.SiteMap.csproj | 7 ++++++-
update_version.ps1 | 6 +++---
7 files changed, 56 insertions(+), 7 deletions(-)
create mode 100644 src/cloudscribe.Web.Navigation/README.md
create mode 100644 src/cloudscribe.Web.SiteMap.FromNavigation/README.md
diff --git a/src/NavigationDemo.Web/NavigationDemo.Web.csproj b/src/NavigationDemo.Web/NavigationDemo.Web.csproj
index f65b57a..5b06762 100644
--- a/src/NavigationDemo.Web/NavigationDemo.Web.csproj
+++ b/src/NavigationDemo.Web/NavigationDemo.Web.csproj
@@ -18,7 +18,7 @@
-
+
diff --git a/src/cloudscribe.Web.Navigation/README.md b/src/cloudscribe.Web.Navigation/README.md
new file mode 100644
index 0000000..319c938
--- /dev/null
+++ b/src/cloudscribe.Web.Navigation/README.md
@@ -0,0 +1,19 @@
+# cloudscribe.Web.Navigation
+
+An ASP.NET Core viewcomponent for menus and breadcrumbs. Provides flexible, hierarchical navigation and breadcrumb support for web applications.
+
+## Usage
+
+1. Install the NuGet package:
+ ```shell
+ dotnet add package cloudscribe.Web.Navigation
+ ```
+2. Add the view component to your layout or page:
+ ```csharp
+ @await Component.InvokeAsync("Navigation")
+ ```
+3. Configure navigation in your app as needed. See the [GitHub repo](https://github.com/joeaudette/cloudscribe.Web.Navigation) for advanced usage and customization.
+
+## License
+
+Licensed under the Apache-2.0 License.
diff --git a/src/cloudscribe.Web.Navigation/cloudscribe.Web.Navigation.csproj b/src/cloudscribe.Web.Navigation/cloudscribe.Web.Navigation.csproj
index d31bba7..ec51910 100644
--- a/src/cloudscribe.Web.Navigation/cloudscribe.Web.Navigation.csproj
+++ b/src/cloudscribe.Web.Navigation/cloudscribe.Web.Navigation.csproj
@@ -2,7 +2,7 @@
an ASP.NET Core viewcomponent for menus and breadcrumbs
- 8.3.0
+ 8.4.0
net8.0
Joe Audette
true
@@ -13,8 +13,13 @@
https://github.com/cloudscribe/cloudscribe.Web.Navigation.git
git
+ README.md
+
+
+
+
diff --git a/src/cloudscribe.Web.SiteMap.FromNavigation/README.md b/src/cloudscribe.Web.SiteMap.FromNavigation/README.md
new file mode 100644
index 0000000..e2f465d
--- /dev/null
+++ b/src/cloudscribe.Web.SiteMap.FromNavigation/README.md
@@ -0,0 +1,15 @@
+# cloudscribe.Web.SiteMap.FromNavigation
+
+A library that implements ISiteMapNodeService using the existing tree of nodes from cloudscribe.Web.Navigation.NavigationTreeBuilderService.
+
+## Usage
+
+1. Install the NuGet package:
+ ```shell
+ dotnet add package cloudscribe.Web.SiteMap.FromNavigation
+ ```
+2. Reference this library in your ASP.NET Core project and configure as needed.
+
+## License
+
+Licensed under the Apache-2.0 License.
diff --git a/src/cloudscribe.Web.SiteMap.FromNavigation/cloudscribe.Web.SiteMap.FromNavigation.csproj b/src/cloudscribe.Web.SiteMap.FromNavigation/cloudscribe.Web.SiteMap.FromNavigation.csproj
index 128b5db..0534f2f 100644
--- a/src/cloudscribe.Web.SiteMap.FromNavigation/cloudscribe.Web.SiteMap.FromNavigation.csproj
+++ b/src/cloudscribe.Web.SiteMap.FromNavigation/cloudscribe.Web.SiteMap.FromNavigation.csproj
@@ -2,7 +2,7 @@
cloudscribe.Web.SiteMap.FromNavigation a library that implements ISiteMapNodeService using existing tree of nodes from cloudscribe.Web.Navigation.NavigationTreeBuilderService
- 8.3.0
+ 8.4.0
net8.0
Joe Audette
cloudscribe;mvc;sitemap
@@ -13,8 +13,13 @@
git
true
+ README.md
+
+
+
+
diff --git a/src/cloudscribe.Web.SiteMap/cloudscribe.Web.SiteMap.csproj b/src/cloudscribe.Web.SiteMap/cloudscribe.Web.SiteMap.csproj
index 681505f..2ed3731 100644
--- a/src/cloudscribe.Web.SiteMap/cloudscribe.Web.SiteMap.csproj
+++ b/src/cloudscribe.Web.SiteMap/cloudscribe.Web.SiteMap.csproj
@@ -2,7 +2,7 @@
ASP.NET Core controller and models for generating an xml sitemap for search indexes http://www.sitemaps.org
- 8.3.0
+ 8.4.0
net8.0
Joe Audette
@@ -15,8 +15,13 @@
https://github.com/cloudscribe/cloudscribe.Web.Navigation.git
git
+ README.md
+
+
+
+
diff --git a/update_version.ps1 b/update_version.ps1
index 32134c7..0ed4dd0 100644
--- a/update_version.ps1
+++ b/update_version.ps1
@@ -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