<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>
<AssemblyName>Google.OrTools.ConstraintSolverTests</AssemblyName> <IsPackable>false</IsPackable>
</PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugType>full</DebugType> <Optimize>true</Optimize> <GenerateTailCalls>true</GenerateTailCalls> </PropertyGroup> <ItemGroup>
<Compile Include="ConstraintSolverTests.cs" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> <PackageReference Include="xunit" Version="2.3.1" /> <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> <PackageReference Include="Google.OrTools" Version="7.7.*" />
</ItemGroup> </Project>