summaryrefslogtreecommitdiffstats
path: root/src/CS340.TSP/CS340.TSP.csproj
blob: 08af2ae2d2c99dd9fd65ae13574ed30bdad80e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <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>