diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-08 10:51:59 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-08 10:51:59 +0000 |
commit | 4bf82db712cf430d3df31558b6b19606171f4485 (patch) | |
tree | b44101adb9250f9172a752852cf7666b16ebbaba | |
parent | f661434ff950d92e04aa3ddab3464a913e274450 (diff) | |
download | newsaggregator-4bf82db712cf430d3df31558b6b19606171f4485.tar.gz newsaggregator-4bf82db712cf430d3df31558b6b19606171f4485.tar.bz2 newsaggregator-4bf82db712cf430d3df31558b6b19606171f4485.zip |
Redefined references
-rw-r--r-- | Main/Main.csproj | 4 | ||||
-rw-r--r-- | Main/Program.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Main/Main.csproj b/Main/Main.csproj index dd85bc5..7f39efb 100644 --- a/Main/Main.csproj +++ b/Main/Main.csproj @@ -1,8 +1,8 @@ <Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
- <ProjectReference Include="..\..\Classes\Classes.csproj" />
- <ProjectReference Include="..\Parser\Parser.csproj" />
+ <ProjectReference Include="..\Classes\Classes.csproj" />
+ <ProjectReference Include="..\Aggregator\Parser\Parser.csproj" />
</ItemGroup>
<PropertyGroup>
diff --git a/Main/Program.cs b/Main/Program.cs index 80fd62a..a0ea7ee 100644 --- a/Main/Program.cs +++ b/Main/Program.cs @@ -2,7 +2,7 @@ using System.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
-using Aggregator.Classes;
+using Classes;
using Aggregator.Parser;
namespace Main {
|