File tree Expand file tree Collapse file tree 5 files changed +49
-5
lines changed
cloudscribe.Syndication.Web Expand file tree Collapse file tree 5 files changed +49
-5
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments