summaryrefslogtreecommitdiffstats
path: root/src/CS340.TSP/CS340.TSP.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/CS340.TSP/CS340.TSP.csproj')
-rw-r--r--src/CS340.TSP/CS340.TSP.csproj20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/CS340.TSP/CS340.TSP.csproj b/src/CS340.TSP/CS340.TSP.csproj
new file mode 100644
index 0000000..d3419d7
--- /dev/null
+++ b/src/CS340.TSP/CS340.TSP.csproj
@@ -0,0 +1,20 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net5.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Content Include="graphs\*.*">
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+ </Content>
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\CS340.Graph\CS340.Graph.csproj" />
+ <ProjectReference Include="..\CS340.Interfaces\CS340.Interfaces.csproj" />
+ <ProjectReference Include="..\CS340.Extensions\CS340.Extensions.csproj" />
+ </ItemGroup>
+
+</Project>