Skip to content

Commit

Permalink
add: google or tools package
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielOlisil committed Mar 19, 2024
1 parent 275f6e9 commit 0b6ad05
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 23 deletions.
7 changes: 6 additions & 1 deletion projeto-gerar-horario/Core/Class1.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
namespace Core;
using Google.OrTools.Bop;
namespace Core;

public class Class1
{

public bool Retorno()
{
BopOptimizerMethod aaa = new BopOptimizerMethod(); // teste de compilação ortools


return true;
}
}
Expand Down
24 changes: 11 additions & 13 deletions projeto-gerar-horario/Core/Core.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<Compile Remove="Program.cs" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Google.OrTools" Version="9.9.3963" />
</ItemGroup>
</Project>
9 changes: 0 additions & 9 deletions projeto-gerar-horario/Core/Program.cs

This file was deleted.

0 comments on commit 0b6ad05

Please sign in to comment.