-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTreeBuilding.fsproj
29 lines (23 loc) · 925 Bytes
/
TreeBuilding.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
<OutputType>Exe</OutputType>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="TreeBuildingTypes.fs" />
<Compile Include="TreeBuildingBaseline.fs" />
<Compile Include="TreeBuilding.fs" />
<Compile Include="TreeBuildingTest.fs" />
<Compile Include="Benchmark.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="FsUnit.xUnit" Version="3.7.0" />
</ItemGroup>
</Project>