Skip to content
Merged

v8.4 #145

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
2 changes: 1 addition & 1 deletion src/NavigationDemo.Web/NavigationDemo.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="cloudscribe.Web.Localization" Version="8.3.0" />
<PackageReference Include="cloudscribe.Web.Localization" Version="8.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down
19 changes: 19 additions & 0 deletions src/cloudscribe.Web.Navigation/README.md
Original file line number Diff line number Diff line change
@@ -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.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>an ASP.NET Core viewcomponent for menus and breadcrumbs</Description>
<Version>8.3.0</Version>
<Version>8.4.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Joe Audette</Authors>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
Expand All @@ -13,8 +13,13 @@
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Navigation.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>

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

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

<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
Expand Down
15 changes: 15 additions & 0 deletions src/cloudscribe.Web.SiteMap.FromNavigation/README.md
Original file line number Diff line number Diff line change
@@ -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.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

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

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
Expand Down
7 changes: 6 additions & 1 deletion src/cloudscribe.Web.SiteMap/cloudscribe.Web.SiteMap.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

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

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

<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
</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