Skip to content

Commit 92ad03c

Browse files
authored
Merge pull request #32 from cloudscribe/develop
v8.4
2 parents a73c2b2 + 55390d4 commit 92ad03c

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# cloudscribe.Web.Localization
2+
3+
A .NET library for more flexible localization in ASP.NET Core applications. Provides advanced resource management and custom localizer factories.
4+
5+
## Usage
6+
7+
1. Install the NuGet package:
8+
```sh
9+
dotnet add package cloudscribe.Web.Localization
10+
```
11+
2. Configure localization in your ASP.NET Core app.
12+
3. Use the provided localizer services in your controllers and views.
13+
14+
## License
15+
16+
This project is licensed under the Apache 2.0 License. See the LICENSE file for details.

src/cloudscribe.Web.Localization/cloudscribe.Web.Localization.csproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<Description>more flexible localization for ASP.NET Core</Description>
5-
<Version>8.3.0</Version>
5+
<Version>8.4.0</Version>
66
<TargetFramework>net8.0</TargetFramework>
77
<Authors>Joe Audette</Authors>
88
<PackageId>cloudscribe.Web.Localization</PackageId>
@@ -13,10 +13,12 @@
1313
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Web.Localization.git</RepositoryUrl>
1414
<RepositoryType>git</RepositoryType>
1515

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

1819
<ItemGroup>
19-
<None Include="icon.png" Pack="true" PackagePath="\" />
20+
<None Include="icon.png" Pack="true" PackagePath="" />
21+
<None Include="README.md" Pack="true" PackagePath="" />
2022
</ItemGroup>
2123

2224
<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)