Add missing SimpleLpProgram.csproj

This commit is contained in:
Corentin Le Molgat
2018-11-09 16:02:25 +01:00
parent 2e5e79cdc7
commit b2ed452218
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<LangVersion>7.2</LangVersion>
<TargetFramework>netcoreapp2.1</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
<RestoreSources>../../../packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<GenerateTailCalls>true</GenerateTailCalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="SimpleLpProgram.cs" />
<PackageReference Include="Google.OrTools" Version="6.9.*" />
</ItemGroup>
</Project>

View File

@@ -90,7 +90,7 @@ done
###############
## Samples ##
###############
for FILE in ortools/sat/samples/*.cs; do
for FILE in ortools/*/samples/*.cs; do
# if no files found do nothing
[ -e "$FILE" ] || continue
PROJ="${FILE%.cs}.csproj";