22 lines
680 B
XML
22 lines
680 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<LangVersion>7.2</LangVersion>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<GenerateTailCalls>true</GenerateTailCalls>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="tsp.cs" />
|
|
<Reference Include="Google.OrTools">
|
|
<HintPath>..\..\..\bin\Google.OrTools.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|