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

  <ItemGroup>
    <ProjectReference Include="..\CS340.Graph\CS340.Graph.csproj" />
    <ProjectReference Include="..\CS340.TSP\CS340.TSP.csproj" />
    <Content Include="graphs\*.*">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>  
  </ItemGroup>

  <ItemGroup>
    <None Remove="graphs\test.txt" />
  </ItemGroup>
  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net5.0-windows</TargetFramework>
    <UseWindowsForms>true</UseWindowsForms>
    <RootNamespace>Plotter</RootNamespace>
  </PropertyGroup>

</Project>