-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTensorAlgDiff.fsproj
More file actions
21 lines (21 loc) · 858 Bytes
/
TensorAlgDiff.fsproj
File metadata and controls
21 lines (21 loc) · 858 Bytes
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">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="FourierMotzkin.fs" />
<Compile Include="Elements.fs" />
<Compile Include="ElementsTests.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Tensor" Version="0.4.11" />
<PackageReference Include="Tensor.Algorithm" Version="0.4.11" />
<PackageReference Include="FsUnit.Xunit" Version="3.1.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
</ItemGroup>
</Project>