20 lines
547 B
XML
20 lines
547 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Program.fs" />
|
|
<Reference Include="Google.OrTools">
|
|
<HintPath>..\..\..\bin\Google.OrTools.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Google.OrTools.FSharp">
|
|
<HintPath>..\..\..\bin\Google.OrTools.FSharp.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|