From 6bd3b3b4516fcf18ed93bf0e27283117c34e59af Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 3 Feb 2019 23:55:35 +0000 Subject: Changed namespace to have prepended Aggregator namespace This is for distinction --- Aggregator/Classes/Article.cs | 2 +- Aggregator/Classes/Config.cs | 2 +- Aggregator/Parser/Download.cs | 2 +- Aggregator/Tests/DownloadTests.cs | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'Aggregator') diff --git a/Aggregator/Classes/Article.cs b/Aggregator/Classes/Article.cs index 48aff3b..180726d 100644 --- a/Aggregator/Classes/Article.cs +++ b/Aggregator/Classes/Article.cs @@ -1,6 +1,6 @@ using System; -namespace Classes { +namespace Aggregator.Classes { /// /// Class to represent Articles in C# /// diff --git a/Aggregator/Classes/Config.cs b/Aggregator/Classes/Config.cs index 9cf3d82..0641dbf 100644 --- a/Aggregator/Classes/Config.cs +++ b/Aggregator/Classes/Config.cs @@ -1,6 +1,6 @@ using System; -namespace Classes { +namespace Aggregator.Classes { /// /// Class to represent position for each piece of data in a class /// To be used in conjunction with article for each source diff --git a/Aggregator/Parser/Download.cs b/Aggregator/Parser/Download.cs index eb46dd0..1249771 100644 --- a/Aggregator/Parser/Download.cs +++ b/Aggregator/Parser/Download.cs @@ -1,7 +1,7 @@ using System.Net; using System.Threading.Tasks; -namespace Parser { +namespace Aggregator.Parser { public static class Download { /// /// Download source from a given site synchronously diff --git a/Aggregator/Tests/DownloadTests.cs b/Aggregator/Tests/DownloadTests.cs index b45adc9..fd647b2 100644 --- a/Aggregator/Tests/DownloadTests.cs +++ b/Aggregator/Tests/DownloadTests.cs @@ -1,11 +1,11 @@ using System; using System.Xml; using System.Xml.Linq; -using Classes; -using Parser; +using Aggregator.Classes; +using Aggregator.Parser; using Xunit; -namespace Tests { +namespace Aggregator.Tests { public class DownloadTests { [Fact] public void Test_DownloadXMLSync() { -- cgit v1.2.3-13-gbd6f