Skip to content
Merged

v8.4 #32

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
16 changes: 16 additions & 0 deletions src/cloudscribe.Web.Localization/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# cloudscribe.Web.Localization

A .NET library for more flexible localization in ASP.NET Core applications. Provides advanced resource management and custom localizer factories.

## Usage

1. Install the NuGet package:
```sh
dotnet add package cloudscribe.Web.Localization
```
2. Configure localization in your ASP.NET Core app.
3. Use the provided localizer services in your controllers and views.

## License

This project is licensed under the Apache 2.0 License. See the LICENSE file for details.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>more flexible localization for ASP.NET Core</Description>
<Version>8.3.0</Version>
<Version>8.4.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Joe Audette</Authors>
<PackageId>cloudscribe.Web.Localization</PackageId>
Expand All @@ -13,10 +13,12 @@
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Localization.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>

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

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

<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