Files
ortools-clone/ortools/linear_solver/samples/SimpleMipProgram.csproj

23 lines
815 B
XML
Raw Normal View History

2018-11-22 09:32:03 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<LangVersion>7.2</LangVersion>
<TargetFramework>netcoreapp2.1</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
<RestoreSources>../../../packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
2019-02-19 11:35:38 +01:00
<AssemblyName>Google.OrTools.SimpleMipProgram</AssemblyName>
<IsPackable>true</IsPackable>
2018-11-22 09:32:03 +01:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<GenerateTailCalls>true</GenerateTailCalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="SimpleMipProgram.cs" />
2019-06-30 11:06:28 +02:00
<PackageReference Include="Google.OrTools" Version="7.2.*" />
2018-11-22 09:32:03 +01:00
</ItemGroup>
</Project>