20 lines
709 B
XML
20 lines
709 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<RestoreSources>../../packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<GenerateTailCalls>true</GenerateTailCalls>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="fsnetwork-max-flow-lpSolve.fs" />
|
|
<PackageReference Include="Google.OrTools.FSharp" Version="6.8.*" />
|
|
</ItemGroup>
|
|
</Project>
|