summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-04-11 18:34:19 -0500
committerToby Vincent <tobyv13@gmail.com>2021-04-11 18:34:19 -0500
commite8ebc6bb177e1a78e3731c5021e7b1c56cdad403 (patch)
tree61467db0404b9719c0a47b695fc09d70b71ad079
parenteb4f800c576fa7978a394451c7b4b7d50a9c0374 (diff)
moved interfaces to seperate project
-rw-r--r--CS340.Graph.csproj4
-rw-r--r--Vertex.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/CS340.Graph.csproj b/CS340.Graph.csproj
index 563e6f9..a4431c0 100644
--- a/CS340.Graph.csproj
+++ b/CS340.Graph.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/Vertex.cs b/Vertex.cs
index 8e0d03c..614e22e 100644
--- a/Vertex.cs
+++ b/Vertex.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using Graph.Interfaces;
+using Interfaces;
namespace Graph
{