Hi,
I am not able to reproduce the issue.
I have create a blank dotnet project and added the package by using
> dotnet add package OPTANO.Modeling.Gurobi
which adds
* OPTANO.Modeling.Gurobi 9.0.2.24
* OPTANO.Modeling 3.3.0.473
The program.cs is just
using OPTANO.Modeling.Optimization.Solver.Gurobi;
using OPTANO.Modeling.Optimization.Solver.Gurobi900;
using System;
namespace isv_check
{
class Program
{
static void Main(string[] args)
{
var solverConfig = new GurobiSolverConfiguration {LimitedLicenseUsage = LimitedLicenseUsage.Always};
var solver = new GurobiSolver(solverConfig);
Console.WriteLine(solver.ToString());
}
}
}
The output the is:
Using size-limited Gurobi license for Optano Modeling
Please visit https://www.gurobi.com/partners/optano to obtain an unlimited license.
OPTANO.Modeling.Optimization.Solver.Gurobi900.GurobiSolver
That just works!?
Would you kindly check the console output. Is the problem to large for the trial license?
Best,
jp