From a26d25ba319e7fdacb47bf8b66e22ca3189fb0d9 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 8 Feb 2019 10:49:19 +0000 Subject: Moved main outside for usage in general purpose --- Main/Main.csproj | 14 ++++++++++++++ Main/Program.cs | 28 ++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 Main/Main.csproj create mode 100644 Main/Program.cs (limited to 'Main') diff --git a/Main/Main.csproj b/Main/Main.csproj new file mode 100644 index 0000000..dd85bc5 --- /dev/null +++ b/Main/Main.csproj @@ -0,0 +1,14 @@ + + + + + + + + + Exe + netcoreapp2.1 + Latest + + + diff --git a/Main/Program.cs b/Main/Program.cs new file mode 100644 index 0000000..80fd62a --- /dev/null +++ b/Main/Program.cs @@ -0,0 +1,28 @@ +using System; +using System.Linq; +using System.Threading.Tasks; +using System.Collections.Generic; +using Aggregator.Classes; +using Aggregator.Parser; + +namespace Main { + internal static class Program { + private static async Task Main(string[] args) { + List configs = new List() { + new Config() { + Source = "BBC", + Title = 0, + Description = 1, + ArticleLink = 2, + ImageLink = 5, + PublishDate = 4 + } + }; + string[] xmls = new [] { + await Download.DownloadXML("http://feeds.bbci.co.uk/news/rss.xml") + }; + List
articles = ParserService.ParseMultiple(xmls, configs).ToList(); + Console.WriteLine(articles.Count); + } + } +} -- cgit v1.2.3-13-gbd6f