diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 11:42:37 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 11:42:37 +0000 |
commit | 2d04b66397f37d688767289e243bd16f1ca84be9 (patch) | |
tree | 9920a1de7bdf7d5971f8044f3498ca40bdb74ba2 /Aggregator | |
parent | ee874ec782f750cc6c2610818b8a276c21fed99e (diff) | |
download | newsaggregator-2d04b66397f37d688767289e243bd16f1ca84be9.tar.gz newsaggregator-2d04b66397f37d688767289e243bd16f1ca84be9.tar.bz2 newsaggregator-2d04b66397f37d688767289e243bd16f1ca84be9.zip |
Changed references to new classes path
Diffstat (limited to 'Aggregator')
-rw-r--r-- | Aggregator/Main/Main.csproj | 2 | ||||
-rw-r--r-- | Aggregator/Parser/Parser.csproj | 2 | ||||
-rw-r--r-- | Aggregator/Tests/Tests.csproj | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Aggregator/Main/Main.csproj b/Aggregator/Main/Main.csproj index 3a964f1..dd85bc5 100644 --- a/Aggregator/Main/Main.csproj +++ b/Aggregator/Main/Main.csproj @@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
- <ProjectReference Include="..\Classes\Classes.csproj" />
+ <ProjectReference Include="..\..\Classes\Classes.csproj" />
<ProjectReference Include="..\Parser\Parser.csproj" />
</ItemGroup>
diff --git a/Aggregator/Parser/Parser.csproj b/Aggregator/Parser/Parser.csproj index 51c6324..99dfa58 100644 --- a/Aggregator/Parser/Parser.csproj +++ b/Aggregator/Parser/Parser.csproj @@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk"> <ItemGroup> - <ProjectReference Include="..\Classes\Classes.csproj" /> + <ProjectReference Include="..\..\Classes\Classes.csproj" /> </ItemGroup> <PropertyGroup> diff --git a/Aggregator/Tests/Tests.csproj b/Aggregator/Tests/Tests.csproj index bd52966..bbd778c 100644 --- a/Aggregator/Tests/Tests.csproj +++ b/Aggregator/Tests/Tests.csproj @@ -13,7 +13,7 @@ </ItemGroup> <ItemGroup> - <ProjectReference Include="..\Classes\Classes.csproj" /> + <ProjectReference Include="..\..\Classes\Classes.csproj" /> <ProjectReference Include="..\Parser\Parser.csproj" /> </ItemGroup> |