Hello,
Compiling the flatzinc library *only* creates fz.lib and the runnable binary.
I haven't found compiled dynamic library nor anything to use fz in c#. It seems that the or-tools c# wrapper doesn't take care of fz.
Moreover, isn't it any other way of using fz that calling directly its binary fz ?
Naively, I was looking for something like
Solver s = new Solver("mySolver");
s.loadMiniZinc("myMiniZincFile.mnz")
s.newSearch ....
or in a more OOP abstractive way
Solver s = new Solver("mySolver");
new FZParser("myMiniZincFile.mnz").injectInto(s);
s.newSearch ...
Was I wrong to hope such interaction between fz and or-tools ?