2018-08-28 16:59:39 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-09-07 16:37:27 +02:00
|
|
|
<LangVersion>7.3</LangVersion>
|
2018-08-28 16:59:39 +02:00
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-09-14 09:15:35 +02:00
|
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
2020-01-09 18:22:18 +01:00
|
|
|
<!-- see https://github.com/dotnet/docs/issues/12237 -->
|
|
|
|
|
<RollForward>LatestMajor</RollForward>
|
2018-08-28 16:59:39 +02:00
|
|
|
<RestoreSources>../../packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
|
2019-02-19 11:35:38 +01:00
|
|
|
<AssemblyName>Google.OrTools.GateSchedulingSat</AssemblyName>
|
|
|
|
|
<IsPackable>true</IsPackable>
|
2018-08-28 16:59:39 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<GenerateTailCalls>true</GenerateTailCalls>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-11-20 14:21:43 -08:00
|
|
|
<Compile Include="GateSchedulingSat.cs" />
|
2021-04-27 10:56:09 +02:00
|
|
|
<PackageReference Include="Google.OrTools" Version="9.0.*" />
|
2018-08-28 16:59:39 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|