Skip to content
Merged

v8.4 #23

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

An ASP.NET Core MVC controller for exposing RSS feeds using cloudscribe.Syndication.

## Usage

1. Install the NuGet package:
```shell
dotnet add package cloudscribe.Syndication.Web
```
2. Reference this library in your ASP.NET Core project and configure routes/controllers as needed.

For more details, see the [GitHub repo](https://github.com/cloudscribe/cloudscribe.Syndication).

## 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>asp.netcore mvc controller for rss feeds</Description>
<Version>8.3.0</Version>
<Version>8.4.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Joe Audette</Authors>
<PackageTags>cloudscribe;syndication;rss;atom;feed</PackageTags>
Expand All @@ -11,8 +11,13 @@
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Syndication.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
17 changes: 17 additions & 0 deletions src/cloudscribe.Syndication/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# cloudscribe.Syndication

A .NET library for RSS and Atom feed generation and consumption.

## Usage

1. Install the NuGet package:
```shell
dotnet add package cloudscribe.Syndication
```
2. Reference the library in your project and use the provided APIs to work with RSS/Atom feeds.

For more details, see the [GitHub repo](https://github.com/cloudscribe/cloudscribe.Syndication).

## License

Licensed under the Apache-2.0 License.
7 changes: 6 additions & 1 deletion src/cloudscribe.Syndication/cloudscribe.Syndication.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>cloudscribe.Syndication Class Library</Description>
<Version>8.3.0</Version>
<Version>8.4.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Joe Audette</Authors>
<PackageTags>cloudscribe;syndication;rss;atom;feed;xml</PackageTags>
Expand All @@ -12,8 +12,13 @@
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Syndication.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