Skip to content

Commit

Permalink
SaveRss20
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWold committed Oct 30, 2023
1 parent 1cf0bf4 commit 1123a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.csx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ new MetalsharpProject()
using (var memoryStream = new MemoryStream())
using (var xmlWriter = XmlWriter.Create(memoryStream, xmlSettings))
{
rssFeed.SaveAsAtom10(xmlWriter); // You can use SaveAsRss20() if you prefer RSS 2.0 format
rssFeed.SaveAsRss20(xmlWriter); // You can use SaveAsRss20() if you prefer RSS 2.0 format
xmlWriter.Flush();
memoryStream.Position = 0;

Expand Down

0 comments on commit 1123a4d

Please sign in to comment.