I have some .NET Framework targeted unit tests which I am updating from net45x to net472.
Others of my projects making the adjustment to netstandard2.0 work fine, but the Google.OrTools package is failing to add as a reference to my project following install.
Additionally, all of the run-times are being added as package references, when I think I should only be seeing the Windows package.
Consequently, any references to OrTools bits in the test assemblies are broken. Google.Protobuf package reference seems to be working okay, but I half expected that it would be fine.
For reference, kindly see my OrTools wrappers. Currently published versions are pre-netstandard2.0 updates. I've got those updates in the works.
I have some .NET Framework targeted unit tests which I am updating from
net45xtonet472.Others of my projects making the adjustment to
netstandard2.0work fine, but theGoogle.OrToolspackage is failing to add as a reference to my project following install.Additionally, all of the run-times are being added as package references, when I think I should only be seeing the Windows package.
Consequently, any references to
OrToolsbits in the test assemblies are broken.Google.Protobufpackage reference seems to be working okay, but I half expected that it would be fine.For reference, kindly see my OrTools wrappers. Currently published versions are pre-
netstandard2.0updates. I've got those updates in the works.