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

25 lines
911 B
XML
Raw Normal View History

2020-12-07 14:57:42 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<LangVersion>7.3</LangVersion>
<TargetFramework>netcoreapp2.1</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
<!-- see https://github.com/dotnet/docs/issues/12237 -->
<RollForward>LatestMajor</RollForward>
<RestoreSources>../../../packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
2020-12-07 17:31:24 +01:00
<AssemblyName>Google.OrTools.BasicExample</AssemblyName>
2020-12-07 14:57:42 +01:00
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<GenerateTailCalls>true</GenerateTailCalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="BasicExample.cs" />
2021-04-27 10:56:09 +02:00
<PackageReference Include="Google.OrTools" Version="9.0.*" />
2020-12-07 14:57:42 +01:00
</ItemGroup>
</Project>