Skip to content

Commit 626391a

Browse files
authored
Merge pull request #23 from cloudscribe/develop
v8.4
2 parents 094ede0 + aceb822 commit 626391a

File tree

5 files changed

+49
-5
lines changed

5 files changed

+49
-5
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# cloudscribe.Syndication.Web
2+
3+
An ASP.NET Core MVC controller for exposing RSS feeds using cloudscribe.Syndication.
4+
5+
## Usage
6+
7+
1. Install the NuGet package:
8+
```shell
9+
dotnet add package cloudscribe.Syndication.Web
10+
```
11+
2. Reference this library in your ASP.NET Core project and configure routes/controllers as needed.
12+
13+
For more details, see the [GitHub repo](https://github.com/cloudscribe/cloudscribe.Syndication).
14+
15+
## License
16+
17+
Licensed under the Apache-2.0 License.

src/cloudscribe.Syndication.Web/cloudscribe.Syndication.Web.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.netcore mvc controller for rss feeds</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;syndication;rss;atom;feed</PackageTags>
@@ -11,8 +11,13 @@
1111
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1212
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Syndication.git</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
14+
<PackageReadmeFile>README.md</PackageReadmeFile>
1415
</PropertyGroup>
1516

17+
<ItemGroup>
18+
<None Include="README.md" Pack="true" PackagePath="" />
19+
</ItemGroup>
20+
1621
<ItemGroup>
1722
<None Include="icon.png" Pack="true" PackagePath="\" />
1823
</ItemGroup>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# cloudscribe.Syndication
2+
3+
A .NET library for RSS and Atom feed generation and consumption.
4+
5+
## Usage
6+
7+
1. Install the NuGet package:
8+
```shell
9+
dotnet add package cloudscribe.Syndication
10+
```
11+
2. Reference the library in your project and use the provided APIs to work with RSS/Atom feeds.
12+
13+
For more details, see the [GitHub repo](https://github.com/cloudscribe/cloudscribe.Syndication).
14+
15+
## License
16+
17+
Licensed under the Apache-2.0 License.

src/cloudscribe.Syndication/cloudscribe.Syndication.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.Syndication Class Library</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;syndication;rss;atom;feed;xml</PackageTags>
@@ -12,8 +12,13 @@
1212
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Syndication.git</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
1414

15+
<PackageReadmeFile>README.md</PackageReadmeFile>
1516
</PropertyGroup>
1617

18+
<ItemGroup>
19+
<None Include="README.md" Pack="true" PackagePath="" />
20+
</ItemGroup>
21+
1722
<ItemGroup>
1823
<None Include="icon.png" Pack="true" PackagePath="\" />
1924
</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)