28 lines
963 B
XML
28 lines
963 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
|
|
<AssemblyName>Google.OrTools.FSharp.Test</AssemblyName>
|
|
<RootNamespace>Google.OrTools.FSharp.Test</RootNamespace>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Tests.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="xunit" Version="2.3.1" />
|
|
<PackageReference Include="xunit.runner.console" Version="2.3.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Google.OrTools.FSharp">
|
|
<HintPath>..\..\..\bin\Google.OrTools.FSharp.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Google.OrTools">
|
|
<HintPath>..\..\..\bin\Google.OrTools.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|