Files
ortools-clone/examples/contrib/fsnetwork-min-cost-flow.fsproj
Corentin Le Molgat 013bb65405 Fix dotnet samples
2021-07-26 12:47:10 +02:00

25 lines
926 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
<!-- see https://github.com/dotnet/docs/issues/12237 -->
<RollForward>LatestMajor</RollForward>
<RestoreSources>../../temp_dotnet/packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
<AssemblyName>Google.OrTools.FSharp.fsnetwork-min-cost-flow</AssemblyName>
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<GenerateTailCalls>true</GenerateTailCalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="fsnetwork-min-cost-flow.fs" />
<PackageReference Include="Google.OrTools.FSharp" Version="9.0.*" />
</ItemGroup>
</Project>