summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-04-11 18:34:21 -0500
committerToby Vincent <tobyv13@gmail.com>2021-04-11 18:34:21 -0500
commit83f7735caa2da33099b5820489eafaee31fdac7a (patch)
tree18ab5c545da4e8962012c065b5041266863aae32
parent2cb716bce5ab9708fee14a326219be063d971385 (diff)
moved interfaces to seperate project
-rwxr-xr-xCS340.PriorityQueue.csproj4
-rwxr-xr-xHeap.cs2
-rwxr-xr-xPriorityQueue.cs2
3 files changed, 6 insertions, 2 deletions
diff --git a/CS340.PriorityQueue.csproj b/CS340.PriorityQueue.csproj
index 563e6f9..a4431c0 100755
--- a/CS340.PriorityQueue.csproj
+++ b/CS340.PriorityQueue.csproj
@@ -1,5 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
+ <ItemGroup>
+ <ProjectReference Include="..\CS340.Interfaces\CS340.Interfaces.csproj" />
+ </ItemGroup>
+
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
diff --git a/Heap.cs b/Heap.cs
index 6402de4..d937c97 100755
--- a/Heap.cs
+++ b/Heap.cs
@@ -1,5 +1,5 @@
using System;
-using PriorityQueue.Interfaces;
+using Interfaces;
namespace PriorityQueue
{
diff --git a/PriorityQueue.cs b/PriorityQueue.cs
index a6538c0..d7bc86e 100755
--- a/PriorityQueue.cs
+++ b/PriorityQueue.cs
@@ -1,5 +1,5 @@
using System;
-using PriorityQueue.Interfaces;
+using Interfaces;
namespace PriorityQueue
{