Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Changed links from examples to point to the NuGet package.
Browse files Browse the repository at this point in the history
  • Loading branch information
ElJerry committed Aug 15, 2017
1 parent c6d0f1e commit 5f5688a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ using (XmlWriter xmlWriter = XmlWriter.Create(sw, new XmlWriterSettings() { Asyn
var item = new SyndicationItem()
{
Title = "Rss Writer Avaliable",
Description = "The new Rss Writer is now open source!",
Id = "https://github.com/dotnet/wcf/tree/lab/lab/src/Microsoft.SyndicationFeed/src",
Description = "The new Rss Writer is now available as a NuGet Package!",
Id = "https://www.nuget.org/packages/Microsoft.SyndicationFeed",
Published = DateTimeOffset.UtcNow
};
Expand Down
4 changes: 2 additions & 2 deletions examples/CreateSimpleRssFeedExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public static async Task WriteFeed()
{
var item = new SyndicationItem()
{
Id = "https://github.com/dotnet/wcf/tree/lab/lab/src/Microsoft.SyndicationFeed/src",
Id = "https://www.nuget.org/packages/Microsoft.SyndicationFeed",
Title = $"Item #{i + 1}",
Description = "The new RSS Writer is now open source!",
Description = "The new RSS Writer is available as a NuGet package!",
Published = DateTimeOffset.UtcNow
};

Expand Down
4 changes: 2 additions & 2 deletions examples/RssWriteItemWithCustomElementExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public static async Task WriteCustomItem()
var item = new SyndicationItem()
{
Title = "Rss Writer Available",
Description = "The new RSS Writer is now open source!",
Id = "https://github.com/dotnet/wcf/tree/lab/lab/src/Microsoft.SyndicationFeed/src",
Description = "The new RSS Writer is now available as a NuGet package!",
Id = "https://www.nuget.org/packages/Microsoft.SyndicationFeed",
Published = DateTimeOffset.UtcNow
};

Expand Down

0 comments on commit 5f5688a

Please sign in to comment.